diff --git a/src/app/fleet/page.tsx b/src/app/fleet/page.tsx index d64d888..0b0f8be 100644 --- a/src/app/fleet/page.tsx +++ b/src/app/fleet/page.tsx @@ -46,19 +46,19 @@ export default function FleetPage() { tag="Available Now" products={[ { - id: "1", name: "Ferrari 488 GTB", price: "$2,500/day", imageSrc: "http://img.b2bpic.net/free-photo/red-sports-tuned-car-rear-view-wheel-close-up_78492-3674.jpg", imageAlt: "Red Ferrari 488 GTB sports car" + id: "1", name: "Ferrari 488 GTB", price: "$2,500/day", imageSrc: "http://img.b2bpic.net/free-photo/red-sports-tuned-car-rear-view-wheel-close-up_78492-3674.jpg?_wi=4", imageAlt: "Red Ferrari 488 GTB sports car" }, { - id: "2", name: "Porsche 911 Carrera", price: "$1,800/day", imageSrc: "http://img.b2bpic.net/free-photo/silver-luxury-sedan-parked-port_114579-5199.jpg", imageAlt: "Silver Porsche 911 Carrera" + id: "2", name: "Porsche 911 Carrera", price: "$1,800/day", imageSrc: "http://img.b2bpic.net/free-photo/silver-luxury-sedan-parked-port_114579-5199.jpg?_wi=3", imageAlt: "Silver Porsche 911 Carrera" }, { - id: "3", name: "Rolls-Royce Phantom", price: "$3,200/day", imageSrc: "http://img.b2bpic.net/free-photo/well-dressed-beautiful-woman-sitting-front-seat-man-dressed-suit-standing-near-car-outdoors_613910-4822.jpg", imageAlt: "Gold Rolls-Royce Phantom luxury sedan" + id: "3", name: "Rolls-Royce Phantom", price: "$3,200/day", imageSrc: "http://img.b2bpic.net/free-photo/well-dressed-beautiful-woman-sitting-front-seat-man-dressed-suit-standing-near-car-outdoors_613910-4822.jpg?_wi=3", imageAlt: "Gold Rolls-Royce Phantom luxury sedan" }, { - id: "4", name: "Lamborghini Huracán", price: "$2,800/day", imageSrc: "http://img.b2bpic.net/free-photo/luxury-sedan-sport-cars-road_114579-4019.jpg", imageAlt: "Black Lamborghini Huracán supercar" + id: "4", name: "Lamborghini Huracán", price: "$2,800/day", imageSrc: "http://img.b2bpic.net/free-photo/luxury-sedan-sport-cars-road_114579-4019.jpg?_wi=3", imageAlt: "Black Lamborghini Huracán supercar" }, { - id: "5", name: "Bentley Continental GT", price: "$2,200/day", imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-car-showroom_1303-22855.jpg", imageAlt: "Champagne Bentley Continental GT" + id: "5", name: "Bentley Continental GT", price: "$2,200/day", imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-car-showroom_1303-22855.jpg?_wi=3", imageAlt: "Champagne Bentley Continental GT" }, ]} gridVariant="uniform-all-items-equal" diff --git a/src/app/page.tsx b/src/app/page.tsx index 98f939b..a84fce1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -65,19 +65,19 @@ export default function HomePage() { tag="Available Now" products={[ { - id: "1", name: "Ferrari 488 GTB", price: "$2,500/day", imageSrc: "http://img.b2bpic.net/free-photo/red-sports-tuned-car-rear-view-wheel-close-up_78492-3674.jpg", imageAlt: "Red Ferrari 488 GTB sports car" + id: "1", name: "Ferrari 488 GTB", price: "$2,500/day", imageSrc: "http://img.b2bpic.net/free-photo/red-sports-tuned-car-rear-view-wheel-close-up_78492-3674.jpg?_wi=1", imageAlt: "Red Ferrari 488 GTB sports car" }, { - id: "2", name: "Porsche 911 Carrera", price: "$1,800/day", imageSrc: "http://img.b2bpic.net/free-photo/silver-luxury-sedan-parked-port_114579-5199.jpg", imageAlt: "Silver Porsche 911 Carrera" + id: "2", name: "Porsche 911 Carrera", price: "$1,800/day", imageSrc: "http://img.b2bpic.net/free-photo/silver-luxury-sedan-parked-port_114579-5199.jpg?_wi=1", imageAlt: "Silver Porsche 911 Carrera" }, { - id: "3", name: "Rolls-Royce Phantom", price: "$3,200/day", imageSrc: "http://img.b2bpic.net/free-photo/well-dressed-beautiful-woman-sitting-front-seat-man-dressed-suit-standing-near-car-outdoors_613910-4822.jpg", imageAlt: "Gold Rolls-Royce Phantom luxury sedan" + id: "3", name: "Rolls-Royce Phantom", price: "$3,200/day", imageSrc: "http://img.b2bpic.net/free-photo/well-dressed-beautiful-woman-sitting-front-seat-man-dressed-suit-standing-near-car-outdoors_613910-4822.jpg?_wi=1", imageAlt: "Gold Rolls-Royce Phantom luxury sedan" }, { - id: "4", name: "Lamborghini Huracán", price: "$2,800/day", imageSrc: "http://img.b2bpic.net/free-photo/luxury-sedan-sport-cars-road_114579-4019.jpg", imageAlt: "Black Lamborghini Huracán supercar" + id: "4", name: "Lamborghini Huracán", price: "$2,800/day", imageSrc: "http://img.b2bpic.net/free-photo/luxury-sedan-sport-cars-road_114579-4019.jpg?_wi=1", imageAlt: "Black Lamborghini Huracán supercar" }, { - id: "5", name: "Bentley Continental GT", price: "$2,200/day", imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-car-showroom_1303-22855.jpg", imageAlt: "Champagne Bentley Continental GT" + id: "5", name: "Bentley Continental GT", price: "$2,200/day", imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-car-showroom_1303-22855.jpg?_wi=1", imageAlt: "Champagne Bentley Continental GT" }, ]} gridVariant="uniform-all-items-equal" @@ -172,22 +172,22 @@ export default function HomePage() { tag="Client Testimonials" testimonials={[ { - id: "1", name: "Michael Richardson, CEO", date: "Date: 15 January 2025", title: "Unforgettable Experience", quote: "LuxeDrive provided an exceptional rental experience. The Ferrari was perfectly maintained, and the concierge service exceeded all expectations. I've already booked my next rental!", tag: "Premium Experience", avatarSrc: "http://img.b2bpic.net/free-photo/young-lady-showing-thumbs-up-shirt-cardigan-looking-joyful-front-view_176474-110768.jpg", imageSrc: "http://img.b2bpic.net/free-photo/red-sports-tuned-car-rear-view-wheel-close-up_78492-3674.jpg" + id: "1", name: "Michael Richardson, CEO", date: "Date: 15 January 2025", title: "Unforgettable Experience", quote: "LuxeDrive provided an exceptional rental experience. The Ferrari was perfectly maintained, and the concierge service exceeded all expectations. I've already booked my next rental!", tag: "Premium Experience", avatarSrc: "http://img.b2bpic.net/free-photo/young-lady-showing-thumbs-up-shirt-cardigan-looking-joyful-front-view_176474-110768.jpg", imageSrc: "http://img.b2bpic.net/free-photo/red-sports-tuned-car-rear-view-wheel-close-up_78492-3674.jpg?_wi=2" }, { - id: "2", name: "Sarah Mitchell, Event Planner", date: "Date: 20 December 2024", title: "Professional & Reliable", quote: "Renting the Rolls-Royce for our corporate event was seamless. The professional delivery, pristine condition, and flawless service made our event truly memorable.", tag: "Corporate Event", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-business-woman_23-2148603029.jpg", imageSrc: "http://img.b2bpic.net/free-photo/well-dressed-beautiful-woman-sitting-front-seat-man-dressed-suit-standing-near-car-outdoors_613910-4822.jpg" + id: "2", name: "Sarah Mitchell, Event Planner", date: "Date: 20 December 2024", title: "Professional & Reliable", quote: "Renting the Rolls-Royce for our corporate event was seamless. The professional delivery, pristine condition, and flawless service made our event truly memorable.", tag: "Corporate Event", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-business-woman_23-2148603029.jpg", imageSrc: "http://img.b2bpic.net/free-photo/well-dressed-beautiful-woman-sitting-front-seat-man-dressed-suit-standing-near-car-outdoors_613910-4822.jpg?_wi=2" }, { - id: "3", name: "James Chen, Entrepreneur", date: "Date: 10 December 2024", title: "Luxury Meets Convenience", quote: "The booking process was incredibly simple, and the Lamborghini was everything I wanted. LuxeDrive's attention to detail and customer service are outstanding.", tag: "Weekend Getaway", avatarSrc: "http://img.b2bpic.net/free-photo/happy-successful-business-colleagues-meeting-outside_1262-21161.jpg", imageSrc: "http://img.b2bpic.net/free-photo/luxury-sedan-sport-cars-road_114579-4019.jpg" + id: "3", name: "James Chen, Entrepreneur", date: "Date: 10 December 2024", title: "Luxury Meets Convenience", quote: "The booking process was incredibly simple, and the Lamborghini was everything I wanted. LuxeDrive's attention to detail and customer service are outstanding.", tag: "Weekend Getaway", avatarSrc: "http://img.b2bpic.net/free-photo/happy-successful-business-colleagues-meeting-outside_1262-21161.jpg", imageSrc: "http://img.b2bpic.net/free-photo/luxury-sedan-sport-cars-road_114579-4019.jpg?_wi=2" }, { - id: "4", name: "Victoria Thompson, Travel Executive", date: "Date: 28 November 2024", title: "Elite Service Excellence", quote: "LuxeDrive understands luxury rental. From booking to return, every detail was perfect. The Porsche was exceptional, and I felt genuinely valued as a client.", tag: "Business Travel", avatarSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-adult-businesswoman-balcony_1262-1758.jpg", imageSrc: "http://img.b2bpic.net/free-photo/silver-luxury-sedan-parked-port_114579-5199.jpg" + id: "4", name: "Victoria Thompson, Travel Executive", date: "Date: 28 November 2024", title: "Elite Service Excellence", quote: "LuxeDrive understands luxury rental. From booking to return, every detail was perfect. The Porsche was exceptional, and I felt genuinely valued as a client.", tag: "Business Travel", avatarSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-adult-businesswoman-balcony_1262-1758.jpg", imageSrc: "http://img.b2bpic.net/free-photo/silver-luxury-sedan-parked-port_114579-5199.jpg?_wi=2" }, { - id: "5", name: "David Park, Businessman", date: "Date: 15 November 2024", title: "Premium Service Throughout", quote: "The entire experience with LuxeDrive was premium from start to finish. The Bentley was immaculate, and the service matched the quality of the vehicle.", tag: "Executive Rental", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-business-woman_23-2148603029.jpg", imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-car-showroom_1303-22855.jpg" + id: "5", name: "David Park, Businessman", date: "Date: 15 November 2024", title: "Premium Service Throughout", quote: "The entire experience with LuxeDrive was premium from start to finish. The Bentley was immaculate, and the service matched the quality of the vehicle.", tag: "Executive Rental", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-business-woman_23-2148603029.jpg", imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-car-showroom_1303-22855.jpg?_wi=2" }, { - id: "6", name: "Emma Watson, Luxury Consultant", date: "Date: 01 November 2024", title: "Best Rental Experience Ever", quote: "I've rented luxury vehicles worldwide, but LuxeDrive stands out. The attention to detail, professionalism, and exceptional fleet make them my first choice.", tag: "Luxury Enthusiast", avatarSrc: "http://img.b2bpic.net/free-photo/happy-caucasian-adult-brunette-woman-smiles-puts-her-thumb-forefinger-together-showing-that-everything-is-ok_197531-31190.jpg", imageSrc: "http://img.b2bpic.net/free-photo/red-sports-tuned-car-rear-view-wheel-close-up_78492-3674.jpg" + id: "6", name: "Emma Watson, Luxury Consultant", date: "Date: 01 November 2024", title: "Best Rental Experience Ever", quote: "I've rented luxury vehicles worldwide, but LuxeDrive stands out. The attention to detail, professionalism, and exceptional fleet make them my first choice.", tag: "Luxury Enthusiast", avatarSrc: "http://img.b2bpic.net/free-photo/happy-caucasian-adult-brunette-woman-smiles-puts-her-thumb-forefinger-together-showing-that-everything-is-ok_197531-31190.jpg", imageSrc: "http://img.b2bpic.net/free-photo/red-sports-tuned-car-rear-view-wheel-close-up_78492-3674.jpg?_wi=3" }, ]} textboxLayout="default"