Spaces:
Running
Running
File size: 35,760 Bytes
6f3a01a |
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 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CycleShare | Peer-to-Peer Cycling Platform</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">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
:root {
--primary: #2ECC71;
--secondary: #3498DB;
--dark: #2C3E50;
--light: #ECF0F1;
}
body {
font-family: 'Poppins', sans-serif;
background-color: #f8fafc;
}
.gradient-bg {
background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.btn-primary {
background-color: var(--primary);
transition: all 0.3s ease;
}
.btn-primary:hover {
background-color: #27AE60;
transform: translateY(-2px);
}
.btn-secondary {
background-color: var(--secondary);
transition: all 0.3s ease;
}
.btn-secondary:hover {
background-color: #2980B9;
transform: translateY(-2px);
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.bike-animation {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
.map-container {
height: 400px;
border-radius: 1rem;
overflow: hidden;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.testimonial-card {
transition: all 0.3s ease;
}
.testimonial-card:hover {
transform: scale(1.03);
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background-color: var(--primary);
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.active-nav::after {
width: 100%;
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="bg-white shadow-lg sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<i class="fas fa-bicycle text-3xl mr-2 text-green-500"></i>
<span class="text-xl font-bold text-gray-800">CycleShare</span>
</div>
<div class="hidden md:ml-10 md:flex md:space-x-8">
<a href="#" class="nav-link active-nav text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 border-green-500 text-sm font-medium">Home</a>
<a href="#" class="nav-link text-gray-500 hover:text-gray-900 inline-flex items-center px-1 pt-1 text-sm font-medium">Rentals</a>
<a href="#" class="nav-link text-gray-500 hover:text-gray-900 inline-flex items-center px-1 pt-1 text-sm font-medium">Ride Sharing</a>
<a href="#" class="nav-link text-gray-500 hover:text-gray-900 inline-flex items-center px-1 pt-1 text-sm font-medium">Community</a>
<a href="#" class="nav-link text-gray-500 hover:text-gray-900 inline-flex items-center px-1 pt-1 text-sm font-medium">Safety</a>
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center">
<button class="btn-primary text-white px-4 py-2 rounded-md text-sm font-medium mr-4">Sign Up</button>
<button class="btn-secondary text-white px-4 py-2 rounded-md text-sm font-medium">Login</button>
</div>
<div class="-mr-2 flex items-center md:hidden">
<button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-green-500" aria-controls="mobile-menu" aria-expanded="false" id="mobile-menu-button">
<span class="sr-only">Open main menu</span>
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div class="md:hidden hidden" id="mobile-menu">
<div class="pt-2 pb-3 space-y-1">
<a href="#" class="bg-green-50 border-green-500 text-green-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Home</a>
<a href="#" class="border-transparent text-gray-600 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-800 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Rentals</a>
<a href="#" class="border-transparent text-gray-600 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-800 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Ride Sharing</a>
<a href="#" class="border-transparent text-gray-600 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-800 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Community</a>
<a href="#" class="border-transparent text-gray-600 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-800 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Safety</a>
<div class="mt-4 pl-3">
<button class="btn-primary text-white px-4 py-2 rounded-md text-sm font-medium mr-2">Sign Up</button>
<button class="btn-secondary text-white px-4 py-2 rounded-md text-sm font-medium">Login</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<div class="gradient-bg text-white">
<div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8">
<div class="text-center">
<h1 class="text-4xl font-extrabold tracking-tight sm:text-5xl lg:text-6xl">
<span class="block">Share the Ride,</span>
<span class="block">Share the Journey</span>
</h1>
<p class="mt-6 max-w-lg mx-auto text-xl">
CycleShare connects cyclists and commuters to share bikes, tools, and rides in your community.
</p>
<div class="mt-10 flex justify-center space-x-4">
<button class="btn-primary text-white px-8 py-3 rounded-md text-lg font-medium">Find a Bike</button>
<button class="bg-white text-green-600 px-8 py-3 rounded-md text-lg font-medium hover:bg-gray-100">List Your Bike</button>
</div>
</div>
<div class="mt-16 flex justify-center bike-animation">
<img src="https://cdn-icons-png.flaticon.com/512/2972/2972185.png" alt="Bike illustration" class="h-64">
</div>
</div>
</div>
<!-- Stats Section -->
<div class="bg-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-4">
<div class="text-center p-6 rounded-lg shadow-md">
<div class="text-4xl font-bold text-green-500">5,000+</div>
<div class="mt-2 text-gray-600">Bikes Shared</div>
</div>
<div class="text-center p-6 rounded-lg shadow-md">
<div class="text-4xl font-bold text-blue-500">10,000+</div>
<div class="mt-2 text-gray-600">Rides Completed</div>
</div>
<div class="text-center p-6 rounded-lg shadow-md">
<div class="text-4xl font-bold text-green-500">500+</div>
<div class="mt-2 text-gray-600">Community Members</div>
</div>
<div class="text-center p-6 rounded-lg shadow-md">
<div class="text-4xl font-bold text-blue-500">100+</div>
<div class="mt-2 text-gray-600">Cities Covered</div>
</div>
</div>
</div>
</div>
<!-- Features Section -->
<div class="bg-gray-50 py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
How CycleShare Works
</h2>
<p class="mt-4 max-w-2xl text-xl text-gray-600 mx-auto">
A community-driven platform for all your cycling needs
</p>
</div>
<div class="mt-16 grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3">
<!-- Feature 1 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-green-100 text-green-600">
<i class="fas fa-bicycle text-xl"></i>
</div>
<h3 class="mt-6 text-lg font-medium text-gray-900">Bike Sharing</h3>
<p class="mt-2 text-gray-600">
Rent or share bikes with fellow cyclists in your area. Perfect for short trips or trying different bike types.
</p>
<div class="mt-4">
<a href="#" class="text-green-600 font-medium hover:text-green-500">Learn more →</a>
</div>
</div>
<!-- Feature 2 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600">
<i class="fas fa-tools text-xl"></i>
</div>
<h3 class="mt-6 text-lg font-medium text-gray-900">Tool Lending</h3>
<p class="mt-2 text-gray-600">
Access repair kits, pumps, and tools from community members when you need them most.
</p>
<div class="mt-4">
<a href="#" class="text-green-600 font-medium hover:text-green-500">Learn more →</a>
</div>
</div>
<!-- Feature 3 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600">
<i class="fas fa-users text-xl"></i>
</div>
<h3 class="mt-6 text-lg font-medium text-gray-900">Ride Sharing</h3>
<p class="mt-2 text-gray-600">
Connect with other commuters heading the same way for safer, more enjoyable rides.
</p>
<div class="mt-4">
<a href="#" class="text-green-600 font-medium hover:text-green-500">Learn more →</a>
</div>
</div>
<!-- Feature 4 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-yellow-100 text-yellow-600">
<i class="fas fa-map-marked-alt text-xl"></i>
</div>
<h3 class="mt-6 text-lg font-medium text-gray-900">Route Sharing</h3>
<p class="mt-2 text-gray-600">
Discover and share the best bike routes, parking spots, and repair stations in your city.
</p>
<div class="mt-4">
<a href="#" class="text-green-600 font-medium hover:text-green-500">Learn more →</a>
</div>
</div>
<!-- Feature 5 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-red-100 text-red-600">
<i class="fas fa-shield-alt text-xl"></i>
</div>
<h3 class="mt-6 text-lg font-medium text-gray-900">Safety Features</h3>
<p class="mt-2 text-gray-600">
Real-time alerts, SOS button, and verified users for your peace of mind.
</p>
<div class="mt-4">
<a href="#" class="text-green-600 font-medium hover:text-green-500">Learn more →</a>
</div>
</div>
<!-- Feature 6 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-100 text-indigo-600">
<i class="fas fa-medal text-xl"></i>
</div>
<h3 class="mt-6 text-lg font-medium text-gray-900">Rewards Program</h3>
<p class="mt-2 text-gray-600">
Earn points for sharing and redeem them for discounts at local bike shops.
</p>
<div class="mt-4">
<a href="#" class="text-green-600 font-medium hover:text-green-500">Learn more →</a>
</div>
</div>
</div>
</div>
</div>
<!-- Bike Rental Showcase -->
<div class="bg-white py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
Find Your Perfect Ride
</h2>
<p class="mt-4 max-w-2xl text-xl text-gray-600 lg:mx-auto">
Browse bikes available in your neighborhood
</p>
</div>
<div class="mt-10 grid grid-cols-1 gap-6 sm:grid-cols-2 lg:grid-cols-3">
<!-- Bike 1 -->
<div class="group bg-white rounded-xl shadow-md overflow-hidden transition duration-300 hover:shadow-xl">
<div class="relative h-48 bg-gray-200 flex items-center justify-center">
<img src="https://images.unsplash.com/photo-1485965120184-e220f721d03e?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60" alt="Mountain bike" class="h-full w-full object-cover">
<div class="absolute top-2 right-2 bg-green-500 text-white text-xs font-bold px-2 py-1 rounded-full">
Available
</div>
</div>
<div class="p-6">
<h3 class="text-lg font-medium text-gray-900">Mountain Bike Pro</h3>
<div class="mt-2 flex items-center">
<div class="flex items-center">
<i class="fas fa-star text-yellow-400"></i>
<span class="ml-1 text-gray-600">4.8 (24)</span>
</div>
<span class="mx-2 text-gray-300">•</span>
<div class="flex items-center">
<i class="fas fa-map-marker-alt text-gray-400"></i>
<span class="ml-1 text-gray-600">1.2 mi away</span>
</div>
</div>
<div class="mt-4 flex justify-between items-center">
<span class="text-lg font-bold text-gray-900">$15/day</span>
<button class="btn-primary text-white px-4 py-2 rounded-md text-sm font-medium">Rent Now</button>
</div>
</div>
</div>
<!-- Bike 2 -->
<div class="group bg-white rounded-xl shadow-md overflow-hidden transition duration-300 hover:shadow-xl">
<div class="relative h-48 bg-gray-200 flex items-center justify-center">
<img src="https://images.unsplash.com/photo-1511994298241-608e28f14fde?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60" alt="Road bike" class="h-full w-full object-cover">
<div class="absolute top-2 right-2 bg-green-500 text-white text-xs font-bold px-2 py-1 rounded-full">
Available
</div>
</div>
<div class="p-6">
<h3 class="text-lg font-medium text-gray-900">Road Bike Elite</h3>
<div class="mt-2 flex items-center">
<div class="flex items-center">
<i class="fas fa-star text-yellow-400"></i>
<span class="ml-1 text-gray-600">4.9 (32)</span>
</div>
<span class="mx-2 text-gray-300">•</span>
<div class="flex items-center">
<i class="fas fa-map-marker-alt text-gray-400"></i>
<span class="ml-1 text-gray-600">0.8 mi away</span>
</div>
</div>
<div class="mt-4 flex justify-between items-center">
<span class="text-lg font-bold text-gray-900">$12/day</span>
<button class="btn-primary text-white px-4 py-2 rounded-md text-sm font-medium">Rent Now</button>
</div>
</div>
</div>
<!-- Bike 3 -->
<div class="group bg-white rounded-xl shadow-md overflow-hidden transition duration-300 hover:shadow-xl">
<div class="relative h-48 bg-gray-200 flex items-center justify-center">
<img src="https://images.unsplash.com/photo-1507035895480-2b3156c31fc8?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60" alt="City bike" class="h-full w-full object-cover">
<div class="absolute top-2 right-2 bg-yellow-500 text-white text-xs font-bold px-2 py-1 rounded-full">
Booked until Fri
</div>
</div>
<div class="p-6">
<h3 class="text-lg font-medium text-gray-900">City Commuter</h3>
<div class="mt-2 flex items-center">
<div class="flex items-center">
<i class="fas fa-star text-yellow-400"></i>
<span class="ml-1 text-gray-600">4.7 (18)</span>
</div>
<span class="mx-2 text-gray-300">•</span>
<div class="flex items-center">
<i class="fas fa-map-marker-alt text-gray-400"></i>
<span class="ml-1 text-gray-600">0.5 mi away</span>
</div>
</div>
<div class="mt-4 flex justify-between items-center">
<span class="text-lg font-bold text-gray-900">$10/day</span>
<button class="bg-gray-300 text-gray-600 px-4 py-2 rounded-md text-sm font-medium cursor-not-allowed">Unavailable</button>
</div>
</div>
</div>
</div>
<div class="mt-10 text-center">
<button class="btn-secondary text-white px-6 py-3 rounded-md text-lg font-medium">View All Bikes</button>
</div>
</div>
</div>
<!-- Community Map Section -->
<div class="bg-gray-50 py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:grid lg:grid-cols-2 lg:gap-12 items-center">
<div>
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
Explore Cycling Resources
</h2>
<p class="mt-4 text-lg text-gray-600">
Our interactive map shows bike-friendly routes, repair stations, water fountains, and parking spots shared by the community.
</p>
<div class="mt-8">
<div class="flex items-start mb-4">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-8 w-8 rounded-md bg-green-500 text-white">
<i class="fas fa-check"></i>
</div>
</div>
<div class="ml-3">
<p class="text-base text-gray-700">Real-time updates on road conditions</p>
</div>
</div>
<div class="flex items-start mb-4">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-8 w-8 rounded-md bg-green-500 text-white">
<i class="fas fa-check"></i>
</div>
</div>
<div class="ml-3">
<p class="text-base text-gray-700">User-reported hazards and shortcuts</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-8 w-8 rounded-md bg-green-500 text-white">
<i class="fas fa-check"></i>
</div>
</div>
<div class="ml-3">
<p class="text-base text-gray-700">Filter by bike type and skill level</p>
</div>
</div>
</div>
<div class="mt-8">
<button class="btn-primary text-white px-6 py-3 rounded-md text-lg font-medium">Open Map</button>
</div>
</div>
<div class="mt-12 lg:mt-0">
<div class="map-container bg-gray-200 relative">
<div class="absolute inset-0 flex items-center justify-center">
<i class="fas fa-map-marked-alt text-5xl text-gray-400"></i>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Testimonials -->
<div class="bg-white py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
What Our Community Says
</h2>
<p class="mt-4 max-w-2xl text-xl text-gray-600 lg:mx-auto">
Join thousands of happy cyclists sharing rides and resources
</p>
</div>
<div class="mt-16 grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3">
<!-- Testimonial 1 -->
<div class="testimonial-card bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center">
<div class="flex-shrink-0">
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/women/32.jpg" alt="Sarah J.">
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Sarah J.</h4>
<div class="flex items-center mt-1">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
</div>
<p class="mt-4 text-gray-600">
"I was able to rent a high-quality road bike for my weekend trip at half the price of a rental shop. The owner even gave me tips on the best routes!"
</p>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center">
<div class="flex-shrink-0">
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/men/45.jpg" alt="Michael T.">
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Michael T.</h4>
<div class="flex items-center mt-1">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
</div>
<p class="mt-4 text-gray-600">
"When my bike broke down, I found someone nearby who could lend me tools and even helped me fix it. This community is amazing!"
</p>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center">
<div class="flex-shrink-0">
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/women/68.jpg" alt="Priya K.">
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Priya K.</h4>
<div class="flex items-center mt-1">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star-half-alt text-yellow-400"></i>
</div>
</div>
</div>
<p class="mt-4 text-gray-600">
"I've met so many fellow commuters through CycleShare. Now I have a regular group to ride with to work - it's safer and more fun!"
</p>
</div>
</div>
</div>
</div>
<!-- CTA Section -->
<div class="gradient-bg text-white">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
<div class="lg:grid lg:grid-cols-2 lg:gap-8 items-center">
<div>
<h2 class="text-3xl font-extrabold sm:text-4xl">
Ready to join the cycling revolution?
</h2>
<p class="mt-4 text-lg">
Whether you want to share your bike, find riding buddies, or access community resources, CycleShare has you covered.
</p>
</div>
<div class="mt-8 lg:mt-0 flex flex-col sm:flex-row lg:flex-col space-y-4 sm:space-y-0 sm:space-x-4 lg:space-x-0 lg:space-y-4">
<button class="bg-white text-green-600 px-8 py-3 rounded-md text-lg font-medium hover:bg-gray-100">Get Started</button>
<button class="bg-green-700 text-white px-8 py-3 rounded-md text-lg font-medium hover:bg-green-800">Learn More</button>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-gray-800 text-white">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8">
<div>
<h3 class="text-lg font-medium mb-4">CycleShare</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-300 hover:text-white">About Us</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Careers</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Press</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Blog</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-medium mb-4">Community</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-300 hover:text-white">Safety</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Help Center</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Guidelines</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Discussions</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-medium mb-4">Hosting</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-300 hover:text-white">List Your Bike</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Host Resources</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Insurance</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Community Standards</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-medium mb-4">Connect</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-300 hover:text-white">Facebook</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Twitter</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">Instagram</a></li>
<li><a href="#" class="text-gray-300 hover:text-white">LinkedIn</a></li>
</ul>
</div>
</div>
<div class="mt-12 pt-8 border-t border-gray-700">
<div class="md:flex md:items-center md:justify-between">
<div class="flex justify-center md:order-2 space-x-6">
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
<div class="mt-8 md:mt-0 md:order-1">
<p class="text-center text-base text-gray-400">
© 2023 CycleShare. All rights reserved.
</p>
</div>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// Simple bike availability filter (demo purposes)
document.addEventListener('DOMContentLoaded', function() {
const rentButtons = document.querySelectorAll('.btn-primary');
rentButtons.forEach(button => {
button.addEventListener('click', function() {
if (!this.classList.contains('cursor-not-allowed')) {
alert('Bike rental process would start here!');
}
});
});
// Simulate map loading
setTimeout(() => {
const mapContainer = document.querySelector('.map-container');
mapContainer.innerHTML = `
<div class="h-full w-full bg-gray-200 flex items-center justify-center">
<div class="text-center">
<i class="fas fa-map-marked-alt text-5xl text-gray-400 mb-4"></i>
<p class="text-gray-600">Interactive map would load here</p>
</div>
</div>
`;
}, 1500);
});
</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=jhparmar/share-cycle" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |