-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
118 lines (109 loc) · 5.07 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Plan your perfect road trip with Route Planner Bot. Discover attractions, points of interest, and optimize your journey with our intelligent Telegram bot.">
<meta name="keywords" content="route planner, road trip planner, travel bot, telegram bot, journey planner, trip optimization">
<meta name="author" content="Route Planner Bot">
<meta name="robots" content="index, follow">
<meta property="og:title" content="Route Planner Bot - Intelligent Travel Planning">
<meta property="og:description" content="Discover attractions and optimize your journey with our intelligent route planning bot.">
<meta property="og:image" content="https://yourwebsite.com/logo.png">
<meta property="og:url" content="https://yourwebsite.com">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Route Planner Bot - Intelligent Travel Planning">
<meta name="twitter:description" content="Discover attractions and optimize your journey with our intelligent route planning bot.">
<meta name="twitter:image" content="https://yourwebsite.com/logo.png">
<title>Route Planner Bot - Intelligent Travel Planning Assistant</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
</head>
<body>
<header>
<div class="header-content">
<img src="logo.png" alt="Route Planner Bot" class="logo">
<h1>Plan Your Perfect Journey</h1>
<p class="header-subtitle">Discover amazing places along your route with our intelligent travel companion</p>
</div>
</header>
<main>
<section class="introduction">
<h1>Welcome to the Route Planner Bot</h1>
<p>Our Route Planner Bot helps you discover attractions along your journey. Simply provide your trip details, and let the bot do the rest!</p>
</section>
<section class="features">
<h2>Key Features</h2>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">🗺️</div>
<h3>Smart Route Planning</h3>
<p>Intelligent algorithms to find the best attractions along your route</p>
</div>
<div class="feature-card">
<div class="feature-icon">⭐</div>
<h3>Curated Attractions</h3>
<p>Discover highly-rated points of interest tailored to your preferences</p>
</div>
<div class="feature-card">
<div class="feature-icon">🚗</div>
<h3>Easy Navigation</h3>
<p>Simple interface to plan your perfect road trip</p>
</div>
<div class="feature-card">
<div class="feature-icon">🚲</div>
<h3>Cyclist-Friendly Routes</h3>
<p>Discover attractions along cycling routes</p>
</div>
</div>
</section>
<section class="quick-access">
<h2>Start Using the Bot</h2>
<div class="access-options">
<div class="qr-section">
<p>📱 Scan QR Code with your phone</p>
<div id="qrcode"></div>
</div>
<div class="telegram-section">
<p>🚀 Open directly in Telegram</p>
<a href="https://t.me/routePlanner_bot" class="telegram-button">
Open in Telegram
</a>
</div>
</div>
</section>
</main>
<footer>
<div class="footer-content">
<p>© 2024 Route Planner Bot. All rights reserved.</p>
<div class="social-links">
<a href="#" title="Twitter">𝕏</a>
<a href="#" title="GitHub">GitHub</a>
<a href="#" title="Telegram">Telegram</a>
</div>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/qrcodejs/1.0.0/qrcode.min.js"></script>
<script src="script.js"></script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "Route Planner Bot",
"applicationCategory": "TravelApplication",
"operatingSystem": "Telegram",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"description": "An intelligent route planning bot that helps discover attractions and optimize your journey.",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.8",
"ratingCount": "100"
}
}
</script>
</body>
</html>