drexmaster00 commited on
Commit
57e9f91
·
verified ·
1 Parent(s): 70fa47d

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +378 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Std Website
3
- emoji: 🚀
4
- colorFrom: yellow
5
- colorTo: purple
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: std-website
3
+ emoji: 🐳
4
+ colorFrom: blue
5
+ colorTo: green
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,378 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Seychelles Travel - Official Tourism Website</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ .hero-bg {
11
+ background-image: url('https://images.unsplash.com/photo-1520250497591-112c3b796f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
12
+ background-size: cover;
13
+ background-position: center;
14
+ }
15
+
16
+ .nav-link:hover {
17
+ color: #f59e0b;
18
+ }
19
+
20
+ .dropdown:hover .dropdown-menu {
21
+ display: block;
22
+ }
23
+
24
+ .island-card:hover {
25
+ transform: translateY(-5px);
26
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
27
+ }
28
+
29
+ .chatbot-icon {
30
+ animation: float 3s ease-in-out infinite;
31
+ }
32
+
33
+ @keyframes float {
34
+ 0% { transform: translateY(0px); }
35
+ 50% { transform: translateY(-10px); }
36
+ 100% { transform: translateY(0px); }
37
+ }
38
+ </style>
39
+ </head>
40
+ <body class="font-sans bg-gray-50">
41
+ <!-- Top Alert -->
42
+ <div class="bg-blue-600 text-white py-2 px-4 text-center">
43
+ <p class="text-sm md:text-base">A Travel Authorisation (TA) is required for every traveller entering Seychelles. <a href="https://seychelles.govtas.com/" class="font-bold underline">Apply now at seychelles.govtas.com</a></p>
44
+ </div>
45
+
46
+ <!-- Navigation -->
47
+ <nav class="bg-white shadow-md">
48
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
49
+ <div class="flex justify-between h-16">
50
+ <div class="flex items-center">
51
+ <a href="#" class="flex-shrink-0">
52
+ <img src="https://seychelles.com/assets/images/seychelleslogore.png" alt="Seychelles Logo" class="h-10">
53
+ </a>
54
+ <div class="hidden md:ml-6 md:flex md:space-x-8">
55
+ <div class="dropdown relative">
56
+ <button class="nav-link text-gray-700 hover:text-blue-600 px-3 py-2 rounded-md text-sm font-medium flex items-center">
57
+ Plan your visit <i class="fas fa-chevron-down ml-1 text-xs"></i>
58
+ </button>
59
+ <div class="dropdown-menu absolute hidden mt-2 w-56 rounded-md shadow-lg bg-white ring-1 ring-black ring-opacity-5 z-10">
60
+ <div class="py-1 grid grid-cols-2 gap-2 p-2">
61
+ <a href="#" class="flex items-center px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 rounded">
62
+ <img src="https://seychelles.com/assets/images/Accomm_Menu_icon.png" class="w-5 h-5 mr-2" alt=""> Accommodation
63
+ </a>
64
+ <a href="#" class="flex items-center px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 rounded">
65
+ <img src="https://seychelles.com/assets/images/TourOperator_menu_icon.png" class="w-5 h-5 mr-2" alt=""> Tour Operators
66
+ </a>
67
+ <a href="#" class="flex items-center px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 rounded">
68
+ <img src="https://seychelles.com/assets/images/AboutSeychelles_menu_icon.png" class="w-5 h-5 mr-2" alt=""> About Seychelles
69
+ </a>
70
+ <a href="#" class="flex items-center px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 rounded">
71
+ <img src="https://seychelles.com/assets/images/Getting_Around_menu_icon.png" class="w-5 h-5 mr-2" alt=""> Getting Around
72
+ </a>
73
+ <a href="#" class="flex items-center px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 rounded">
74
+ <img src="https://seychelles.com/assets/images/Travel_Info_menu_icon.png" class="w-5 h-5 mr-2" alt=""> Travel Information
75
+ </a>
76
+ <a href="#" class="flex items-center px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 rounded">
77
+ <img src="https://seychelles.com/assets/images/Airlines_menu_icon.png" class="w-5 h-5 mr-2" alt=""> Airlines
78
+ </a>
79
+ </div>
80
+ </div>
81
+ </div>
82
+
83
+ <div class="dropdown relative">
84
+ <button class="nav-link text-gray-700 hover:text-blue-600 px-3 py-2 rounded-md text-sm font-medium flex items-center">
85
+ Experience <i class="fas fa-chevron-down ml-1 text-xs"></i>
86
+ </button>
87
+ <div class="dropdown-menu absolute hidden mt-2 w-64 rounded-md shadow-lg bg-white ring-1 ring-black ring-opacity-5 z-10">
88
+ <div class="py-1 grid grid-cols-2 gap-2 p-2">
89
+ <a href="#" class="flex items-center px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 rounded">
90
+ <img src="https://seychelles.com/assets/images/Activities_menu_icon.png" class="w-5 h-5 mr-2" alt=""> Activities
91
+ </a>
92
+ <a href="#" class="flex items-center px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 rounded">
93
+ <img src="https://seychelles.com/assets/images/generalservices.png" class="w-5 h-5 mr-2" alt=""> General services
94
+ </a>
95
+ <a href="#" class="flex items-center px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 rounded">
96
+ <img src="https://seychelles.com/assets/images/Restaurents_menu_icon.png" class="w-5 h-5 mr-2" alt=""> Food & Drinks
97
+ </a>
98
+ <a href="#" class="flex items-center px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 rounded">
99
+ <img src="https://seychelles.com/assets/images/Walk_Trails_menu_icon.png" class="w-5 h-5 mr-2" alt=""> Walks & Trails
100
+ </a>
101
+ <a href="#" class="flex items-center px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 rounded">
102
+ <img src="https://seychelles.com/assets/images/Attractions_menu_icon.png" class="w-5 h-5 mr-2" alt=""> Attractions
103
+ </a>
104
+ <a href="#" class="flex items-center px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 rounded">
105
+ <img src="https://seychelles.com/assets/images/Events_menu_icon.png" class="w-5 h-5 mr-2" alt=""> Events
106
+ </a>
107
+ </div>
108
+ </div>
109
+ </div>
110
+
111
+ <a href="#" class="nav-link text-gray-700 hover:text-blue-600 px-3 py-2 rounded-md text-sm font-medium">
112
+ The Islands
113
+ </a>
114
+ <a href="#" class="nav-link text-gray-700 hover:text-blue-600 px-3 py-2 rounded-md text-sm font-medium">
115
+ Explore 360°
116
+ </a>
117
+ </div>
118
+ </div>
119
+ <div class="flex items-center">
120
+ <a href="#" class="text-gray-700 hover:text-blue-600 px-3 py-2 rounded-md text-sm font-medium">
121
+ Login
122
+ </a>
123
+ <a href="#" class="bg-blue-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-blue-700">
124
+ Explore Seychelles
125
+ </a>
126
+ <button class="md:hidden ml-4 inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none">
127
+ <i class="fas fa-bars"></i>
128
+ </button>
129
+ </div>
130
+ </div>
131
+ </div>
132
+ </nav>
133
+
134
+ <!-- Hero Section -->
135
+ <div class="hero-bg relative h-96 md:h-screen max-h-screen flex items-center justify-center">
136
+ <div class="absolute inset-0 bg-black opacity-40"></div>
137
+ <div class="relative z-10 text-center px-4">
138
+ <img src="https://seychelles.com/assets/images/bannerlogo.png" alt="Seychelles" class="mx-auto h-20 mb-6">
139
+ <h1 class="text-4xl md:text-6xl font-bold text-white mb-6">Discover Paradise on Earth</h1>
140
+ <p class="text-xl text-white mb-8 max-w-2xl mx-auto">Pristine beaches, crystal-clear waters, and lush tropical landscapes await you in Seychelles</p>
141
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
142
+ <a href="#" class="bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-6 rounded-full transition duration-300">
143
+ Plan Your Trip
144
+ </a>
145
+ <a href="#" class="bg-white hover:bg-gray-100 text-blue-600 font-bold py-3 px-6 rounded-full transition duration-300">
146
+ Explore Activities
147
+ </a>
148
+ </div>
149
+ </div>
150
+ </div>
151
+
152
+ <!-- Special Interests -->
153
+ <div class="py-12 bg-white">
154
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
155
+ <h2 class="text-3xl font-bold text-center text-gray-900 mb-12">Special Interests</h2>
156
+ <div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-7 gap-4">
157
+ <a href="#" class="special-interest-card flex flex-col items-center p-4 rounded-lg hover:bg-gray-50 transition duration-300">
158
+ <div class="w-16 h-16 mb-3 rounded-full bg-blue-100 flex items-center justify-center">
159
+ <img src="https://seychelles.com/assets/images/sailing_menu.avif" alt="Sailing" class="w-10 h-10">
160
+ </div>
161
+ <span class="text-sm font-medium text-gray-700 text-center">Sailing</span>
162
+ </a>
163
+ <a href="#" class="special-interest-card flex flex-col items-center p-4 rounded-lg hover:bg-gray-50 transition duration-300">
164
+ <div class="w-16 h-16 mb-3 rounded-full bg-blue-100 flex items-center justify-center">
165
+ <img src="https://seychelles.com/assets/images/fishing_menu.avif" alt="Fishing" class="w-10 h-10">
166
+ </div>
167
+ <span class="text-sm font-medium text-gray-700 text-center">Fishing</span>
168
+ </a>
169
+ <a href="#" class="special-interest-card flex flex-col items-center p-4 rounded-lg hover:bg-gray-50 transition duration-300">
170
+ <div class="w-16 h-16 mb-3 rounded-full bg-blue-100 flex items-center justify-center">
171
+ <img src="https://seychelles.com/assets/images/nature_menu.avif" alt="Nature" class="w-10 h-10">
172
+ </div>
173
+ <span class="text-sm font-medium text-gray-700 text-center">Nature</span>
174
+ </a>
175
+ <a href="#" class="special-interest-card flex flex-col items-center p-4 rounded-lg hover:bg-gray-50 transition duration-300">
176
+ <div class="w-16 h-16 mb-3 rounded-full bg-blue-100 flex items-center justify-center">
177
+ <img src="https://seychelles.com/assets/images/culture_menu.avif" alt="Culture" class="w-10 h-10">
178
+ </div>
179
+ <span class="text-sm font-medium text-gray-700 text-center">Culture</span>
180
+ </a>
181
+ <a href="#" class="special-interest-card flex flex-col items-center p-4 rounded-lg hover:bg-gray-50 transition duration-300">
182
+ <div class="w-16 h-16 mb-3 rounded-full bg-blue-100 flex items-center justify-center">
183
+ <img src="https://seychelles.com/assets/images/romance_menu.avif" alt="Romance" class="w-10 h-10">
184
+ </div>
185
+ <span class="text-sm font-medium text-gray-700 text-center">Romance</span>
186
+ </a>
187
+ <a href="#" class="special-interest-card flex flex-col items-center p-4 rounded-lg hover:bg-gray-50 transition duration-300">
188
+ <div class="w-16 h-16 mb-3 rounded-full bg-blue-100 flex items-center justify-center">
189
+ <img src="https://seychelles.com/assets/images/diving_menu.avif" alt="Diving" class="w-10 h-10">
190
+ </div>
191
+ <span class="text-sm font-medium text-gray-700 text-center">Diving</span>
192
+ </a>
193
+ <a href="#" class="special-interest-card flex flex-col items-center p-4 rounded-lg hover:bg-gray-50 transition duration-300">
194
+ <div class="w-16 h-16 mb-3 rounded-full bg-blue-100 flex items-center justify-center">
195
+ <img src="https://seychelles.com/assets/images/workcation_menu.avif" alt="Sustainable" class="w-10 h-10">
196
+ </div>
197
+ <span class="text-sm font-medium text-gray-700 text-center">Sustainable</span>
198
+ </a>
199
+ </div>
200
+ </div>
201
+ </div>
202
+
203
+ <!-- Featured Islands -->
204
+ <div class="py-12 bg-gray-50">
205
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
206
+ <h2 class="text-3xl font-bold text-center text-gray-900 mb-12">Discover Our Islands</h2>
207
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
208
+ <div class="island-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300">
209
+ <img src="https://images.unsplash.com/photo-1566073781404-0df42ae1c47e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Mahé" class="w-full h-48 object-cover">
210
+ <div class="p-6">
211
+ <h3 class="text-xl font-bold text-gray-900 mb-2">Mahé</h3>
212
+ <p class="text-gray-600 mb-4">The largest island with vibrant culture, stunning beaches, and the capital Victoria.</p>
213
+ <a href="#" class="text-blue-600 font-medium hover:text-blue-800">Explore Mahé →</a>
214
+ </div>
215
+ </div>
216
+ <div class="island-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300">
217
+ <img src="https://images.unsplash.com/photo-1583422190411-77adf0c924b5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Praslin" class="w-full h-48 object-cover">
218
+ <div class="p-6">
219
+ <h3 class="text-xl font-bold text-gray-900 mb-2">Praslin</h3>
220
+ <p class="text-gray-600 mb-4">Home to the UNESCO-listed Vallée de Mai and Anse Lazio, one of the world's best beaches.</p>
221
+ <a href="#" class="text-blue-600 font-medium hover:text-blue-800">Explore Praslin →</a>
222
+ </div>
223
+ </div>
224
+ <div class="island-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300">
225
+ <img src="https://images.unsplash.com/photo-1544551763-46a013bb70d8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="La Digue" class="w-full h-48 object-cover">
226
+ <div class="p-6">
227
+ <h3 class="text-xl font-bold text-gray-900 mb-2">La Digue</h3>
228
+ <p class="text-gray-600 mb-4">Famous for its granite boulders, ox-cart transport, and the breathtaking Anse Source d'Argent.</p>
229
+ <a href="#" class="text-blue-600 font-medium hover:text-blue-800">Explore La Digue →</a>
230
+ </div>
231
+ </div>
232
+ </div>
233
+ <div class="text-center mt-10">
234
+ <a href="#" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-full shadow-sm text-white bg-blue-600 hover:bg-blue-700">
235
+ View All Islands
236
+ </a>
237
+ </div>
238
+ </div>
239
+ </div>
240
+
241
+ <!-- Mobile App Section -->
242
+ <div class="py-12 bg-gradient-to-r from-blue-600 to-blue-800 text-white">
243
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
244
+ <div class="lg:grid lg:grid-cols-2 lg:gap-8 items-center">
245
+ <div class="mb-8 lg:mb-0 text-center lg:text-left">
246
+ <h2 class="text-3xl font-bold mb-4">Explore Seychelles with Our Mobile App</h2>
247
+ <p class="text-xl mb-6">Download the official Seychelles tourism app for maps, guides, and exclusive offers.</p>
248
+ <div class="flex flex-col sm:flex-row justify-center lg:justify-start gap-4">
249
+ <a href="#" class="bg-black hover:bg-gray-900 text-white font-medium py-3 px-6 rounded-lg flex items-center justify-center">
250
+ <img src="https://seychelles.com/assets/images/playstore.png" alt="Google Play" class="h-8 mr-2">
251
+ <div class="text-left">
252
+ <div class="text-xs">GET IT ON</div>
253
+ <div class="text-lg font-bold">Google Play</div>
254
+ </div>
255
+ </a>
256
+ <a href="#" class="bg-black hover:bg-gray-900 text-white font-medium py-3 px-6 rounded-lg flex items-center justify-center">
257
+ <img src="https://seychelles.com/assets/images/ios.png" alt="App Store" class="h-8 mr-2">
258
+ <div class="text-left">
259
+ <div class="text-xs">Download on the</div>
260
+ <div class="text-lg font-bold">App Store</div>
261
+ </div>
262
+ </a>
263
+ </div>
264
+ </div>
265
+ <div class="flex justify-center">
266
+ <img src="https://seychelles.com/assets/images/cellphone.png" alt="Mobile App" class="h-80">
267
+ </div>
268
+ </div>
269
+ </div>
270
+ </div>
271
+
272
+ <!-- Footer -->
273
+ <footer class="bg-gray-900 text-white pt-12 pb-6">
274
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
275
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8">
276
+ <div>
277
+ <img src="https://seychelles.com/assets/images/footerlogoc.png" alt="Seychelles Logo" class="h-12 mb-4">
278
+ <p class="text-gray-400">The official tourism website of the Seychelles Islands.</p>
279
+ </div>
280
+ <div>
281
+ <h3 class="text-lg font-semibold mb-4">Plan Your Visit</h3>
282
+ <ul class="space-y-2">
283
+ <li><a href="#" class="text-gray-400 hover:text-white">Accommodation</a></li>
284
+ <li><a href="#" class="text-gray-400 hover:text-white">Tour Operators</a></li>
285
+ <li><a href="#" class="text-gray-400 hover:text-white">Getting Around</a></li>
286
+ <li><a href="#" class="text-gray-400 hover:text-white">Travel Information</a></li>
287
+ </ul>
288
+ </div>
289
+ <div>
290
+ <h3 class="text-lg font-semibold mb-4">Experience</h3>
291
+ <ul class="space-y-2">
292
+ <li><a href="#" class="text-gray-400 hover:text-white">Activities</a></li>
293
+ <li><a href="#" class="text-gray-400 hover:text-white">Food & Drinks</a></li>
294
+ <li><a href="#" class="text-gray-400 hover:text-white">Attractions</a></li>
295
+ <li><a href="#" class="text-gray-400 hover:text-white">Events</a></li>
296
+ </ul>
297
+ </div>
298
+ <div>
299
+ <h3 class="text-lg font-semibold mb-4">Connect With Us</h3>
300
+ <div class="flex space-x-4 mb-4">
301
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a>
302
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
303
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
304
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-youtube"></i></a>
305
+ </div>
306
+ <p class="text-gray-400">Subscribe to our newsletter</p>
307
+ <div class="mt-2 flex">
308
+ <input type="email" placeholder="Your email" class="px-4 py-2 rounded-l text-gray-900 w-full">
309
+ <button class="bg-blue-600 hover:bg-blue-700 px-4 py-2 rounded-r">
310
+ <i class="fas fa-paper-plane"></i>
311
+ </button>
312
+ </div>
313
+ </div>
314
+ </div>
315
+ <div class="border-t border-gray-800 pt-6">
316
+ <p class="text-gray-400 text-center text-sm">&copy; 2023 Seychelles Tourism Board. All rights reserved.</p>
317
+ </div>
318
+ </div>
319
+ </footer>
320
+
321
+ <!-- Chatbot -->
322
+ <div class="fixed bottom-6 right-6 z-50">
323
+ <div id="chatbot-trigger" class="bg-blue-600 rounded-full p-4 shadow-xl cursor-pointer hover:bg-blue-700 transition duration-300 chatbot-icon">
324
+ <img src="https://seychelles.com/assets/images/chatbot/chatbotIcon1.png" alt="Chat with Koko" class="w-12 h-12">
325
+ </div>
326
+ <div id="chatbot-window" class="hidden absolute bottom-20 right-0 w-80 bg-white rounded-lg shadow-xl overflow-hidden">
327
+ <div class="bg-blue-600 text-white p-4 flex justify-between items-center">
328
+ <div class="flex items-center">
329
+ <img src="https://seychelles.com/assets/images/chatbot/chatbotIcon1.png" alt="Koko" class="w-10 h-10 mr-2">
330
+ <div>
331
+ <h3 class="font-bold">Koko</h3>
332
+ <p class="text-xs">Your Seychelles Travel Assistant</p>
333
+ </div>
334
+ </div>
335
+ <button id="close-chatbot" class="text-white hover:text-gray-200">
336
+ <i class="fas fa-times"></i>
337
+ </button>
338
+ </div>
339
+ <div class="p-4 h-64 overflow-y-auto">
340
+ <div class="mb-4">
341
+ <div class="bg-gray-100 rounded-lg p-3 max-w-xs">
342
+ <p class="text-sm">Hi! I'm Koko, your friendly AI Travel Assistant. Ask me anything about The Seychelles Islands!</p>
343
+ </div>
344
+ </div>
345
+ </div>
346
+ <div class="border-t p-4">
347
+ <div class="flex">
348
+ <input type="text" placeholder="Type your message..." class="flex-1 border rounded-l-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-blue-500">
349
+ <button class="bg-blue-600 text-white px-4 py-2 rounded-r-lg hover:bg-blue-700">
350
+ <i class="fas fa-paper-plane"></i>
351
+ </button>
352
+ </div>
353
+ </div>
354
+ </div>
355
+ </div>
356
+
357
+ <script>
358
+ // Chatbot toggle
359
+ const chatbotTrigger = document.getElementById('chatbot-trigger');
360
+ const chatbotWindow = document.getElementById('chatbot-window');
361
+ const closeChatbot = document.getElementById('close-chatbot');
362
+
363
+ chatbotTrigger.addEventListener('click', () => {
364
+ chatbotWindow.classList.toggle('hidden');
365
+ });
366
+
367
+ closeChatbot.addEventListener('click', () => {
368
+ chatbotWindow.classList.add('hidden');
369
+ });
370
+
371
+ // Mobile menu toggle (would need more implementation)
372
+ document.querySelector('.md\\:hidden').addEventListener('click', function() {
373
+ // This would toggle a mobile menu (implementation needed)
374
+ console.log('Mobile menu clicked');
375
+ });
376
+ </script>
377
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=drexmaster00/std-website" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
378
+ </html>