import React, { useState } from 'react'; import { Car, Shield, Clock, MapPin, Star, ChevronRight, Menu, X, CheckCircle } from 'lucide-react'; export default function CarRentalLanding() { const [isMenuOpen, setIsMenuOpen] = useState(false); const [selectedCar, setSelectedCar] = useState(null); const cars = [ { id: 1, name: "Economy Sedan", image: "🚗", price: 35, features: ["5 Seats", "Auto", "AC", "4 Doors"], rating: 4.5 }, { id: 2, name: "Luxury SUV", image: "🚙", price: 89, features: ["7 Seats", "Auto", "Premium", "AWD"], rating: 4.8 }, { id: 3, name: "Sports Coupe", image: "🏎️", price: 120, features: ["2 Seats", "Manual", "Turbo", "Premium"], rating: 4.9 }, { id: 4, name: "Family Van", image: "🚐", price: 65, features: ["8 Seats", "Auto", "AC", "Spacious"], rating: 4.6 } ]; const features = [ { icon: , title: "Fully Insured", description: "Comprehensive coverage for peace of mind" }, { icon: , title: "24/7 Support", description: "Round-the-clock customer assistance" }, { icon: , title: "Multiple Locations", description: "Pick up and drop off anywhere" }, { icon: , title: "Top Rated", description: "4.8 stars from 10,000+ customers" } ]; return (
{/* Navigation */} {/* Hero Section */}

Your Journey Starts Here

Premium car rental services with unbeatable rates and exceptional customer care. Drive the car of your dreams today.

🚗
{/* Features Section */}

Why Choose Us

Experience the best car rental service in town

{features.map((feature, index) => (
{feature.icon}

{feature.title}

{feature.description}

))}
{/* Fleet Section */}

Our Premium Fleet

Choose from our wide selection of vehicles

{cars.map((car) => (
{car.image}

{car.name}

{car.rating}
{car.features.map((feature, idx) => ( {feature} ))}
${car.price} /day
))}
{/* Booking Modal */} {selectedCar && (
{selectedCar.image}

{selectedCar.name}

${selectedCar.price}/day

)} {/* Testimonials */}

What Our Customers Say

{[1, 2, 3].map((i) => (
{[...Array(5)].map((_, idx) => ( ))}

"Excellent service! The car was clean, well-maintained, and the booking process was seamless. Highly recommended!"

JD
John Doe
Business Traveler
))}
{/* CTA Section */}

Ready to Hit the Road?

Book your perfect vehicle today - Call us now!

📞 Call 6392018105
{/* Footer */}
); }