tongxiaojun commited on
Commit
45fe0d2
·
verified ·
1 Parent(s): 4a00ce1

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +475 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Electroride
3
- emoji: 💻
4
- colorFrom: pink
5
- colorTo: pink
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: electroride
3
+ emoji: 🐳
4
+ colorFrom: gray
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,475 @@
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>ElectroRide - Premium Electric Bicycles</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
+ <script>
10
+ tailwind.config = {
11
+ theme: {
12
+ extend: {
13
+ colors: {
14
+ primary: '#22c55e',
15
+ secondary: '#15803d',
16
+ accent: '#f59e0b',
17
+ }
18
+ }
19
+ }
20
+ }
21
+ </script>
22
+ <style>
23
+ .hero-bg {
24
+ background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1511994298241-608e28f14fde?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
25
+ background-size: cover;
26
+ background-position: center;
27
+ }
28
+
29
+ .bike-card:hover {
30
+ transform: translateY(-5px);
31
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
32
+ }
33
+
34
+ .testimonial-card {
35
+ transition: all 0.3s ease;
36
+ }
37
+
38
+ .testimonial-card:hover {
39
+ transform: scale(1.03);
40
+ }
41
+
42
+ .feature-icon {
43
+ transition: all 0.3s ease;
44
+ }
45
+
46
+ .feature-card:hover .feature-icon {
47
+ transform: rotate(10deg) scale(1.1);
48
+ }
49
+ </style>
50
+ </head>
51
+ <body class="font-sans antialiased text-gray-800">
52
+ <!-- Header/Navigation -->
53
+ <header class="bg-white shadow-sm sticky top-0 z-50">
54
+ <div class="container mx-auto px-4 py-3 flex justify-between items-center">
55
+ <div class="flex items-center">
56
+ <a href="#" class="text-2xl font-bold text-primary flex items-center">
57
+ <i class="fas fa-bolt mr-2"></i>
58
+ ElectroRide
59
+ </a>
60
+ </div>
61
+
62
+ <nav class="hidden md:flex space-x-8">
63
+ <a href="#home" class="font-medium hover:text-primary transition">Home</a>
64
+ <a href="#bikes" class="font-medium hover:text-primary transition">E-Bikes</a>
65
+ <a href="#features" class="font-medium hover:text-primary transition">Features</a>
66
+ <a href="#testimonials" class="font-medium hover:text-primary transition">Testimonials</a>
67
+ <a href="#contact" class="font-medium hover:text-primary transition">Contact</a>
68
+ </nav>
69
+
70
+ <div class="flex items-center space-x-4">
71
+ <a href="#" class="p-2 hover:text-primary transition">
72
+ <i class="fas fa-shopping-cart"></i>
73
+ </a>
74
+ <a href="#" class="p-2 hover:text-primary transition">
75
+ <i class="fas fa-user"></i>
76
+ </a>
77
+ <button class="md:hidden p-2 focus:outline-none">
78
+ <i class="fas fa-bars"></i>
79
+ </button>
80
+ </div>
81
+ </div>
82
+ </header>
83
+
84
+ <!-- Hero Section -->
85
+ <section id="home" class="hero-bg text-white py-20 md:py-32">
86
+ <div class="container mx-auto px-4 text-center">
87
+ <h1 class="text-4xl md:text-6xl font-bold mb-6">Ride Further, Ride Smarter</h1>
88
+ <p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">Discover our premium electric bicycles designed for comfort, performance, and sustainability.</p>
89
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
90
+ <a href="#bikes" class="bg-primary hover:bg-secondary text-white font-bold py-3 px-8 rounded-full transition duration-300 transform hover:scale-105">
91
+ Shop Now
92
+ </a>
93
+ <a href="#features" class="bg-white hover:bg-gray-100 text-gray-800 font-bold py-3 px-8 rounded-full transition duration-300 transform hover:scale-105">
94
+ Learn More
95
+ </a>
96
+ </div>
97
+ </div>
98
+ </section>
99
+
100
+ <!-- Featured Bikes Section -->
101
+ <section id="bikes" class="py-16 bg-gray-50">
102
+ <div class="container mx-auto px-4">
103
+ <div class="text-center mb-12">
104
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Our Electric Bikes</h2>
105
+ <p class="text-gray-600 max-w-2xl mx-auto">Choose from our range of high-performance electric bicycles for every terrain and lifestyle.</p>
106
+ </div>
107
+
108
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
109
+ <!-- Bike 1 -->
110
+ <div class="bike-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
111
+ <div class="relative">
112
+ <img src="https://images.unsplash.com/photo-1558981806-ec527fa84c39?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Urban Commuter" class="w-full h-64 object-cover">
113
+ <span class="absolute top-4 right-4 bg-primary text-white text-xs font-bold px-3 py-1 rounded-full">BESTSELLER</span>
114
+ </div>
115
+ <div class="p-6">
116
+ <h3 class="text-xl font-bold mb-2">Urban Commuter Pro</h3>
117
+ <p class="text-gray-600 mb-4">Perfect for city rides with its lightweight frame and powerful motor.</p>
118
+ <div class="flex justify-between items-center">
119
+ <span class="text-2xl font-bold text-primary">$1,299</span>
120
+ <button class="bg-primary hover:bg-secondary text-white font-medium py-2 px-4 rounded-full transition">
121
+ Add to Cart
122
+ </button>
123
+ </div>
124
+ </div>
125
+ </div>
126
+
127
+ <!-- Bike 2 -->
128
+ <div class="bike-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
129
+ <div class="relative">
130
+ <img src="https://images.unsplash.com/photo-1576435728678-68d3685c962a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Mountain Explorer" class="w-full h-64 object-cover">
131
+ <span class="absolute top-4 right-4 bg-accent text-white text-xs font-bold px-3 py-1 rounded-full">NEW</span>
132
+ </div>
133
+ <div class="p-6">
134
+ <h3 class="text-xl font-bold mb-2">Mountain Explorer X</h3>
135
+ <p class="text-gray-600 mb-4">Conquer any trail with our rugged off-road electric mountain bike.</p>
136
+ <div class="flex justify-between items-center">
137
+ <span class="text-2xl font-bold text-primary">$1,899</span>
138
+ <button class="bg-primary hover:bg-secondary text-white font-medium py-2 px-4 rounded-full transition">
139
+ Add to Cart
140
+ </button>
141
+ </div>
142
+ </div>
143
+ </div>
144
+
145
+ <!-- Bike 3 -->
146
+ <div class="bike-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
147
+ <div>
148
+ <img src="https://images.unsplash.com/photo-1485965120184-e220f721d03e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Folding Compact" class="w-full h-64 object-cover">
149
+ </div>
150
+ <div class="p-6">
151
+ <h3 class="text-xl font-bold mb-2">Folding Compact</h3>
152
+ <p class="text-gray-600 mb-4">Space-saving design with all the power you need for daily commuting.</p>
153
+ <div class="flex justify-between items-center">
154
+ <span class="text-2xl font-bold text-primary">$999</span>
155
+ <button class="bg-primary hover:bg-secondary text-white font-medium py-2 px-4 rounded-full transition">
156
+ Add to Cart
157
+ </button>
158
+ </div>
159
+ </div>
160
+ </div>
161
+ </div>
162
+
163
+ <div class="text-center mt-12">
164
+ <a href="#" class="inline-block border-2 border-primary text-primary hover:bg-primary hover:text-white font-bold py-3 px-8 rounded-full transition duration-300">
165
+ View All Bikes
166
+ </a>
167
+ </div>
168
+ </div>
169
+ </section>
170
+
171
+ <!-- Features Section -->
172
+ <section id="features" class="py-16 bg-white">
173
+ <div class="container mx-auto px-4">
174
+ <div class="text-center mb-12">
175
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Why Choose ElectroRide?</h2>
176
+ <p class="text-gray-600 max-w-2xl mx-auto">Our e-bikes are designed with cutting-edge technology and premium materials.</p>
177
+ </div>
178
+
179
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
180
+ <!-- Feature 1 -->
181
+ <div class="feature-card bg-gray-50 p-6 rounded-xl text-center hover:shadow-lg transition">
182
+ <div class="feature-icon bg-primary bg-opacity-10 text-primary w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
183
+ <i class="fas fa-battery-full text-3xl"></i>
184
+ </div>
185
+ <h3 class="text-xl font-bold mb-2">Long Battery Life</h3>
186
+ <p class="text-gray-600">Up to 80 miles on a single charge with our advanced lithium-ion batteries.</p>
187
+ </div>
188
+
189
+ <!-- Feature 2 -->
190
+ <div class="feature-card bg-gray-50 p-6 rounded-xl text-center hover:shadow-lg transition">
191
+ <div class="feature-icon bg-primary bg-opacity-10 text-primary w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
192
+ <i class="fas fa-tachometer-alt text-3xl"></i>
193
+ </div>
194
+ <h3 class="text-xl font-bold mb-2">Powerful Motors</h3>
195
+ <p class="text-gray-600">250W to 750W motors that provide smooth acceleration and hill-climbing power.</p>
196
+ </div>
197
+
198
+ <!-- Feature 3 -->
199
+ <div class="feature-card bg-gray-50 p-6 rounded-xl text-center hover:shadow-lg transition">
200
+ <div class="feature-icon bg-primary bg-opacity-10 text-primary w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
201
+ <i class="fas fa-leaf text-3xl"></i>
202
+ </div>
203
+ <h3 class="text-xl font-bold mb-2">Eco-Friendly</h3>
204
+ <p class="text-gray-600">Reduce your carbon footprint while enjoying your daily commute.</p>
205
+ </div>
206
+
207
+ <!-- Feature 4 -->
208
+ <div class="feature-card bg-gray-50 p-6 rounded-xl text-center hover:shadow-lg transition">
209
+ <div class="feature-icon bg-primary bg-opacity-10 text-primary w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
210
+ <i class="fas fa-cog text-3xl"></i>
211
+ </div>
212
+ <h3 class="text-xl font-bold mb-2">Smart Features</h3>
213
+ <p class="text-gray-600">Integrated displays, GPS tracking, and smartphone connectivity.</p>
214
+ </div>
215
+ </div>
216
+ </div>
217
+ </section>
218
+
219
+ <!-- Testimonials Section -->
220
+ <section id="testimonials" class="py-16 bg-gray-50">
221
+ <div class="container mx-auto px-4">
222
+ <div class="text-center mb-12">
223
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">What Our Customers Say</h2>
224
+ <p class="text-gray-600 max-w-2xl mx-auto">Join thousands of happy riders who have transformed their commute with ElectroRide.</p>
225
+ </div>
226
+
227
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
228
+ <!-- Testimonial 1 -->
229
+ <div class="testimonial-card bg-white p-6 rounded-xl shadow-md">
230
+ <div class="flex items-center mb-4">
231
+ <img src="https://randomuser.me/api/portraits/women/32.jpg" alt="Sarah J." class="w-12 h-12 rounded-full mr-4">
232
+ <div>
233
+ <h4 class="font-bold">Sarah J.</h4>
234
+ <div class="flex text-yellow-400">
235
+ <i class="fas fa-star"></i>
236
+ <i class="fas fa-star"></i>
237
+ <i class="fas fa-star"></i>
238
+ <i class="fas fa-star"></i>
239
+ <i class="fas fa-star"></i>
240
+ </div>
241
+ </div>
242
+ </div>
243
+ <p class="text-gray-600">"My Urban Commuter Pro has completely changed my daily routine. I arrive at work energized instead of exhausted. The battery life is incredible!"</p>
244
+ </div>
245
+
246
+ <!-- Testimonial 2 -->
247
+ <div class="testimonial-card bg-white p-6 rounded-xl shadow-md">
248
+ <div class="flex items-center mb-4">
249
+ <img src="https://randomuser.me/api/portraits/men/45.jpg" alt="Michael T." class="w-12 h-12 rounded-full mr-4">
250
+ <div>
251
+ <h4 class="font-bold">Michael T.</h4>
252
+ <div class="flex text-yellow-400">
253
+ <i class="fas fa-star"></i>
254
+ <i class="fas fa-star"></i>
255
+ <i class="fas fa-star"></i>
256
+ <i class="fas fa-star"></i>
257
+ <i class="fas fa-star"></i>
258
+ </div>
259
+ </div>
260
+ </div>
261
+ <p class="text-gray-600">"The Mountain Explorer X handles trails like a dream. I can go further into the wilderness than ever before and still have power to get home."</p>
262
+ </div>
263
+
264
+ <!-- Testimonial 3 -->
265
+ <div class="testimonial-card bg-white p-6 rounded-xl shadow-md">
266
+ <div class="flex items-center mb-4">
267
+ <img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Emma R." class="w-12 h-12 rounded-full mr-4">
268
+ <div>
269
+ <h4 class="font-bold">Emma R.</h4>
270
+ <div class="flex text-yellow-400">
271
+ <i class="fas fa-star"></i>
272
+ <i class="fas fa-star"></i>
273
+ <i class="fas fa-star"></i>
274
+ <i class="fas fa-star"></i>
275
+ <i class="fas fa-star-half-alt"></i>
276
+ </div>
277
+ </div>
278
+ </div>
279
+ <p class="text-gray-600">"As someone who lives in a small apartment, the Folding Compact is perfect. It's powerful enough for my commute and folds up neatly in my closet."</p>
280
+ </div>
281
+ </div>
282
+ </div>
283
+ </section>
284
+
285
+ <!-- CTA Section -->
286
+ <section class="py-16 bg-primary text-white">
287
+ <div class="container mx-auto px-4 text-center">
288
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Start Your E-Bike Journey?</h2>
289
+ <p class="text-xl mb-8 max-w-2xl mx-auto">Join the electric revolution and experience the freedom of effortless riding.</p>
290
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
291
+ <a href="#bikes" class="bg-white hover:bg-gray-100 text-primary font-bold py-3 px-8 rounded-full transition duration-300 transform hover:scale-105">
292
+ Shop Now
293
+ </a>
294
+ <a href="#contact" class="bg-transparent hover:bg-white hover:text-primary border-2 border-white text-white font-bold py-3 px-8 rounded-full transition duration-300 transform hover:scale-105">
295
+ Contact Us
296
+ </a>
297
+ </div>
298
+ </div>
299
+ </section>
300
+
301
+ <!-- Contact Section -->
302
+ <section id="contact" class="py-16 bg-white">
303
+ <div class="container mx-auto px-4">
304
+ <div class="max-w-4xl mx-auto">
305
+ <div class="text-center mb-12">
306
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Get In Touch</h2>
307
+ <p class="text-gray-600 max-w-2xl mx-auto">Have questions? Our team is here to help you find the perfect e-bike.</p>
308
+ </div>
309
+
310
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8">
311
+ <div class="bg-gray-50 p-8 rounded-xl">
312
+ <h3 class="text-xl font-bold mb-4">Contact Information</h3>
313
+ <div class="space-y-4">
314
+ <div class="flex items-start">
315
+ <i class="fas fa-map-marker-alt text-primary mt-1 mr-4"></i>
316
+ <div>
317
+ <h4 class="font-medium">Address</h4>
318
+ <p class="text-gray-600">123 Electric Avenue, Green City, GC 12345</p>
319
+ </div>
320
+ </div>
321
+ <div class="flex items-start">
322
+ <i class="fas fa-phone-alt text-primary mt-1 mr-4"></i>
323
+ <div>
324
+ <h4 class="font-medium">Phone</h4>
325
+ <p class="text-gray-600">+1 (555) 123-4567</p>
326
+ </div>
327
+ </div>
328
+ <div class="flex items-start">
329
+ <i class="fas fa-envelope text-primary mt-1 mr-4"></i>
330
+ <div>
331
+ <h4 class="font-medium">Email</h4>
332
+ <p class="text-gray-600">[email protected]</p>
333
+ </div>
334
+ </div>
335
+ </div>
336
+
337
+ <div class="mt-8">
338
+ <h3 class="text-xl font-bold mb-4">Store Hours</h3>
339
+ <div class="space-y-2">
340
+ <div class="flex justify-between">
341
+ <span class="text-gray-600">Monday - Friday</span>
342
+ <span class="font-medium">9:00 AM - 6:00 PM</span>
343
+ </div>
344
+ <div class="flex justify-between">
345
+ <span class="text-gray-600">Saturday</span>
346
+ <span class="font-medium">10:00 AM - 4:00 PM</span>
347
+ </div>
348
+ <div class="flex justify-between">
349
+ <span class="text-gray-600">Sunday</span>
350
+ <span class="font-medium">Closed</span>
351
+ </div>
352
+ </div>
353
+ </div>
354
+ </div>
355
+
356
+ <div class="bg-gray-50 p-8 rounded-xl">
357
+ <h3 class="text-xl font-bold mb-4">Send Us a Message</h3>
358
+ <form class="space-y-4">
359
+ <div>
360
+ <label for="name" class="block text-gray-700 mb-2">Name</label>
361
+ <input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent">
362
+ </div>
363
+ <div>
364
+ <label for="email" class="block text-gray-700 mb-2">Email</label>
365
+ <input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent">
366
+ </div>
367
+ <div>
368
+ <label for="subject" class="block text-gray-700 mb-2">Subject</label>
369
+ <input type="text" id="subject" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent">
370
+ </div>
371
+ <div>
372
+ <label for="message" class="block text-gray-700 mb-2">Message</label>
373
+ <textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent"></textarea>
374
+ </div>
375
+ <button type="submit" class="w-full bg-primary hover:bg-secondary text-white font-bold py-3 px-4 rounded-full transition">
376
+ Send Message
377
+ </button>
378
+ </form>
379
+ </div>
380
+ </div>
381
+ </div>
382
+ </div>
383
+ </section>
384
+
385
+ <!-- Footer -->
386
+ <footer class="bg-gray-900 text-white py-12">
387
+ <div class="container mx-auto px-4">
388
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
389
+ <div>
390
+ <a href="#" class="text-2xl font-bold text-primary flex items-center mb-4">
391
+ <i class="fas fa-bolt mr-2"></i>
392
+ ElectroRide
393
+ </a>
394
+ <p class="text-gray-400">Premium electric bicycles for every lifestyle. Ride further, ride smarter.</p>
395
+ <div class="flex space-x-4 mt-4">
396
+ <a href="#" class="text-gray-400 hover:text-white transition">
397
+ <i class="fab fa-facebook-f"></i>
398
+ </a>
399
+ <a href="#" class="text-gray-400 hover:text-white transition">
400
+ <i class="fab fa-twitter"></i>
401
+ </a>
402
+ <a href="#" class="text-gray-400 hover:text-white transition">
403
+ <i class="fab fa-instagram"></i>
404
+ </a>
405
+ <a href="#" class="text-gray-400 hover:text-white transition">
406
+ <i class="fab fa-youtube"></i>
407
+ </a>
408
+ </div>
409
+ </div>
410
+
411
+ <div>
412
+ <h3 class="text-lg font-bold mb-4">Shop</h3>
413
+ <ul class="space-y-2">
414
+ <li><a href="#" class="text-gray-400 hover:text-white transition">All E-Bikes</a></li>
415
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Urban Bikes</a></li>
416
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Mountain Bikes</a></li>
417
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Folding Bikes</a></li>
418
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Accessories</a></li>
419
+ </ul>
420
+ </div>
421
+
422
+ <div>
423
+ <h3 class="text-lg font-bold mb-4">Support</h3>
424
+ <ul class="space-y-2">
425
+ <li><a href="#" class="text-gray-400 hover:text-white transition">FAQs</a></li>
426
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Shipping</a></li>
427
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Returns</a></li>
428
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Warranty</a></li>
429
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Contact Us</a></li>
430
+ </ul>
431
+ </div>
432
+
433
+ <div>
434
+ <h3 class="text-lg font-bold mb-4">Newsletter</h3>
435
+ <p class="text-gray-400 mb-4">Subscribe to get updates on new products and special offers.</p>
436
+ <form class="flex">
437
+ <input type="email" placeholder="Your email" class="px-4 py-2 w-full rounded-l-lg focus:outline-none text-gray-900">
438
+ <button type="submit" class="bg-primary hover:bg-secondary px-4 py-2 rounded-r-lg transition">
439
+ <i class="fas fa-paper-plane"></i>
440
+ </button>
441
+ </form>
442
+ </div>
443
+ </div>
444
+
445
+ <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
446
+ <p class="text-gray-400 text-sm">© 2023 ElectroRide. All rights reserved.</p>
447
+ <div class="flex space-x-6 mt-4 md:mt-0">
448
+ <a href="#" class="text-gray-400 hover:text-white text-sm transition">Privacy Policy</a>
449
+ <a href="#" class="text-gray-400 hover:text-white text-sm transition">Terms of Service</a>
450
+ <a href="#" class="text-gray-400 hover:text-white text-sm transition">Cookie Policy</a>
451
+ </div>
452
+ </div>
453
+ </div>
454
+ </footer>
455
+
456
+ <script>
457
+ // Simple JavaScript for mobile menu toggle (would need to be expanded for full functionality)
458
+ document.querySelector('.md\\:hidden').addEventListener('click', function() {
459
+ // This would toggle a mobile menu in a real implementation
460
+ alert('Mobile menu would open here in a complete implementation');
461
+ });
462
+
463
+ // Smooth scrolling for anchor links
464
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
465
+ anchor.addEventListener('click', function (e) {
466
+ e.preventDefault();
467
+
468
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
469
+ behavior: 'smooth'
470
+ });
471
+ });
472
+ });
473
+ </script>
474
+ <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=tongxiaojun/electroride" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
475
+ </html>
prompts.txt ADDED
File without changes