Spaces:
Running
Running
File size: 27,646 Bytes
45fe0d2 4959520 45fe0d2 4959520 45fe0d2 | 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 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ElectroRide - Premium Electric Bicycles</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#22c55e',
secondary: '#15803d',
accent: '#f59e0b',
}
}
}
}
</script>
<style>
.hero-bg {
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');
background-size: cover;
background-position: center;
}
.bike-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.testimonial-card {
transition: all 0.3s ease;
}
.testimonial-card:hover {
transform: scale(1.03);
}
.feature-icon {
transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
transform: rotate(10deg) scale(1.1);
}
</style>
</head>
<body class="font-sans antialiased text-gray-800">
<!-- Header/Navigation -->
<header class="bg-white shadow-sm sticky top-0 z-50">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center">
<a href="#" class="text-2xl font-bold text-primary flex items-center">
<i class="fas fa-bolt mr-2"></i>
ElectroRide
</a>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#home" class="font-medium hover:text-primary transition">Home</a>
<a href="#bikes" class="font-medium hover:text-primary transition">E-Bikes</a>
<a href="#features" class="font-medium hover:text-primary transition">Features</a>
<a href="#testimonials" class="font-medium hover:text-primary transition">Testimonials</a>
<a href="#contact" class="font-medium hover:text-primary transition">Contact</a>
</nav>
<div class="flex items-center space-x-4">
<a href="#" class="p-2 hover:text-primary transition">
<i class="fas fa-shopping-cart"></i>
</a>
<a href="#" class="p-2 hover:text-primary transition">
<i class="fas fa-user"></i>
</a>
<button class="md:hidden p-2 focus:outline-none">
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</header>
<!-- Hero Section -->
<section id="home" class="hero-bg text-white py-20 md:py-32">
<div class="container mx-auto px-4 text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6">Ride Further, Ride Smarter</h1>
<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>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<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">
Shop Now
</a>
<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">
Learn More
</a>
</div>
</div>
</section>
<!-- Featured Bikes Section -->
<section id="bikes" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Our Electric Bikes</h2>
<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>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Bike 1 -->
<div class="bike-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
<div class="relative">
<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">
<span class="absolute top-4 right-4 bg-primary text-white text-xs font-bold px-3 py-1 rounded-full">BESTSELLER</span>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Urban Commuter Pro</h3>
<p class="text-gray-600 mb-4">Perfect for city rides with its lightweight frame and powerful motor.</p>
<div class="flex justify-between items-center">
<span class="text-2xl font-bold text-primary">$1,299</span>
<button class="bg-primary hover:bg-secondary text-white font-medium py-2 px-4 rounded-full transition">
Add to Cart
</button>
</div>
</div>
</div>
<!-- Bike 2 -->
<div class="bike-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
<div class="relative">
<img src="https://images.unsplash.com/photo-1571068316344-75bc76f77890?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Mountain Explorer" class="w-full h-64 object-cover">
<span class="absolute top-4 right-4 bg-accent text-white text-xs font-bold px-3 py-1 rounded-full">NEW</span>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Mountain Explorer X</h3>
<p class="text-gray-600 mb-4">Conquer any trail with our rugged off-road electric mountain bike.</p>
<div class="flex justify-between items-center">
<span class="text-2xl font-bold text-primary">$1,899</span>
<button class="bg-primary hover:bg-secondary text-white font-medium py-2 px-4 rounded-full transition">
Add to Cart
</button>
</div>
</div>
</div>
<!-- Bike 3 -->
<div class="bike-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
<div>
<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">
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Folding Compact</h3>
<p class="text-gray-600 mb-4">Space-saving design with all the power you need for daily commuting.</p>
<div class="flex justify-between items-center">
<span class="text-2xl font-bold text-primary">$999</span>
<button class="bg-primary hover:bg-secondary text-white font-medium py-2 px-4 rounded-full transition">
Add to Cart
</button>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<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">
View All Bikes
</a>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Why Choose ElectroRide?</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Our e-bikes are designed with cutting-edge technology and premium materials.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Feature 1 -->
<div class="feature-card bg-gray-50 p-6 rounded-xl text-center hover:shadow-lg transition">
<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">
<i class="fas fa-battery-full text-3xl"></i>
</div>
<h3 class="text-xl font-bold mb-2">Long Battery Life</h3>
<p class="text-gray-600">Up to 80 miles on a single charge with our advanced lithium-ion batteries.</p>
</div>
<!-- Feature 2 -->
<div class="feature-card bg-gray-50 p-6 rounded-xl text-center hover:shadow-lg transition">
<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">
<i class="fas fa-tachometer-alt text-3xl"></i>
</div>
<h3 class="text-xl font-bold mb-2">Powerful Motors</h3>
<p class="text-gray-600">250W to 750W motors that provide smooth acceleration and hill-climbing power.</p>
</div>
<!-- Feature 3 -->
<div class="feature-card bg-gray-50 p-6 rounded-xl text-center hover:shadow-lg transition">
<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">
<i class="fas fa-leaf text-3xl"></i>
</div>
<h3 class="text-xl font-bold mb-2">Eco-Friendly</h3>
<p class="text-gray-600">Reduce your carbon footprint while enjoying your daily commute.</p>
</div>
<!-- Feature 4 -->
<div class="feature-card bg-gray-50 p-6 rounded-xl text-center hover:shadow-lg transition">
<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">
<i class="fas fa-cog text-3xl"></i>
</div>
<h3 class="text-xl font-bold mb-2">Smart Features</h3>
<p class="text-gray-600">Integrated displays, GPS tracking, and smartphone connectivity.</p>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold mb-4">What Our Customers Say</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Join thousands of happy riders who have transformed their commute with ElectroRide.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="testimonial-card bg-white p-6 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/women/32.jpg" alt="Sarah J." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Sarah J.</h4>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
<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>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card bg-white p-6 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/men/45.jpg" alt="Michael T." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Michael T.</h4>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
<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>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card bg-white p-6 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Emma R." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Emma R.</h4>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
</div>
<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>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 bg-primary text-white">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Start Your E-Bike Journey?</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto">Join the electric revolution and experience the freedom of effortless riding.</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<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">
Shop Now
</a>
<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">
Contact Us
</a>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="max-w-4xl mx-auto">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Get In Touch</h2>
<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>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="bg-gray-50 p-8 rounded-xl">
<h3 class="text-xl font-bold mb-4">Contact Information</h3>
<div class="space-y-4">
<div class="flex items-start">
<i class="fas fa-map-marker-alt text-primary mt-1 mr-4"></i>
<div>
<h4 class="font-medium">Address</h4>
<p class="text-gray-600">123 Electric Avenue, Green City, GC 12345</p>
</div>
</div>
<div class="flex items-start">
<i class="fas fa-phone-alt text-primary mt-1 mr-4"></i>
<div>
<h4 class="font-medium">Phone</h4>
<p class="text-gray-600">+1 (555) 123-4567</p>
</div>
</div>
<div class="flex items-start">
<i class="fas fa-envelope text-primary mt-1 mr-4"></i>
<div>
<h4 class="font-medium">Email</h4>
<p class="text-gray-600">info@electroride.com</p>
</div>
</div>
</div>
<div class="mt-8">
<h3 class="text-xl font-bold mb-4">Store Hours</h3>
<div class="space-y-2">
<div class="flex justify-between">
<span class="text-gray-600">Monday - Friday</span>
<span class="font-medium">9:00 AM - 6:00 PM</span>
</div>
<div class="flex justify-between">
<span class="text-gray-600 Saturday</span>
<span class="font-medium">10:00 AM - 4:00 PM</span>
</div>
<div class="flex justify-between">
<span class="text-gray-600">Sunday</span>
<span class="font-medium">Closed</span>
</div>
</div>
</div>
</div>
<div class="bg-gray-50 p-8 rounded-xl">
<h3 class="text-xl font-bold mb-4">Send Us a Message</h3>
<form class="space-y-4">
<div>
<label for="name" class="block text-gray-700 mb-2">Name</label>
<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">
</div>
<div>
<label for="email" class="block text-gray-700 mb-2">Email</label>
<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">
</div>
<div>
<label for="subject" class="block text-gray-700 mb-2">Subject</label>
<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">
</div>
<div>
<label for="message" class="block text-gray-700 mb-2">Message</label>
<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>
</div>
<button type="submit" class="w-full bg-primary hover:bg-secondary text-white font-bold py-3 px-4 rounded-full transition">
Send Message
</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<a href="#" class="text-2xl font-bold text-primary flex items-center mb-4">
<i class="fas fa-bolt mr-2"></i>
ElectroRide
</a>
<p class="text-gray-400">Premium electric bicycles for every lifestyle. Ride further, ride smarter.</p>
<div class="flex space-x-4 mt-4">
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Shop</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">All E-Bikes</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Urban Bikes</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Mountain Bikes</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Folding Bikes</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Accessories</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Support</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">FAQs</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Shipping</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Returns</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Warranty</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Contact Us</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Newsletter</h3>
<p class="text-gray-400 mb-4">Subscribe to get updates on new products and special offers.</p>
<form class="flex">
<input type="email" placeholder="Your email" class="px-4 py-2 w-full rounded-l-lg focus:outline-none text-gray-900">
<button type="submit" class="bg-primary hover:bg-secondary px-4 py-2 rounded-r-lg transition">
<i class="fas fa-paper-plane"></i>
</button>
</form>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 text-sm">© 2023 ElectroRide. All rights reserved.</p>
<div class="flex space-x-6 mt-4 md:mt-0">
<a href="#" class="text-gray-400 hover:text-white text-sm transition">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white text-sm transition">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white text-sm transition">Cookie Policy</a>
</div>
</div>
</div>
</footer>
<script>
// Simple JavaScript for mobile menu toggle (would need to be expanded for full functionality)
document.querySelector('.md\\:hidden').addEventListener('click', function() {
// This would toggle a mobile menu in a real implementation
alert('Mobile menu would open here in a complete implementation');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
</script>
<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>
</html> |