diff --git a/src/app/inventory/page.tsx b/src/app/inventory/page.tsx index a5fda8e..20fd95c 100644 --- a/src/app/inventory/page.tsx +++ b/src/app/inventory/page.tsx @@ -27,40 +27,20 @@ export default function LandingPage() { @@ -70,101 +50,40 @@ export default function LandingPage() { layout="section" products={[ { - id: "1", - category: "Sedan", - name: "2021 BMW 3 Series", - price: "$38,500", - rating: 5, - reviewCount: "42", - imageSrc: "http://img.b2bpic.net/free-photo/black-vintage-car-driving-road-longing-accross-forest_114579-4062.jpg?_wi=2", - imageAlt: "2021 BMW 3 Series", - }, + id: "1", category: "Sedan", name: "2021 BMW 3 Series", price: "$38,500", rating: 5, + reviewCount: "42", imageSrc: "http://img.b2bpic.net/free-photo/black-vintage-car-driving-road-longing-accross-forest_114579-4062.jpg", imageAlt: "2021 BMW 3 Series"}, { - id: "2", - category: "SUV", - name: "2020 Lexus RX 350", - price: "$41,000", - rating: 4, - reviewCount: "30", - imageSrc: "http://img.b2bpic.net/free-photo/modern-station-wagon-driving-winter-highway-sunset-car-snowy-road_169016-71836.jpg?_wi=2", - imageAlt: "2020 Lexus RX 350", - }, + id: "2", category: "SUV", name: "2020 Lexus RX 350", price: "$41,000", rating: 4, + reviewCount: "30", imageSrc: "http://img.b2bpic.net/free-photo/modern-station-wagon-driving-winter-highway-sunset-car-snowy-road_169016-71836.jpg", imageAlt: "2020 Lexus RX 350"}, { - id: "3", - category: "Sports Car", - name: "2019 Porsche 911 Carrera", - price: "$89,900", - rating: 5, - reviewCount: "18", - imageSrc: "http://img.b2bpic.net/free-photo/business-man-choosing-car-car-showroom_1303-24069.jpg?_wi=2", - imageAlt: "2019 Porsche 911 Carrera", - }, + id: "3", category: "Sports Car", name: "2019 Porsche 911 Carrera", price: "$89,900", rating: 5, + reviewCount: "18", imageSrc: "http://img.b2bpic.net/free-photo/business-man-choosing-car-car-showroom_1303-24069.jpg", imageAlt: "2019 Porsche 911 Carrera"}, { - id: "4", - category: "Luxury Sedan", - name: "2022 Mercedes-Benz E-Class", - price: "$52,000", - rating: 5, - reviewCount: "25", - imageSrc: "http://img.b2bpic.net/free-photo/stunning-young-woman-wearing-dress-posing-front-her-car-road-with-sky-background-ownership-driver_158595-6820.jpg?_wi=2", - imageAlt: "2022 Mercedes-Benz E-Class", - }, + id: "4", category: "Luxury Sedan", name: "2022 Mercedes-Benz E-Class", price: "$52,000", rating: 5, + reviewCount: "25", imageSrc: "http://img.b2bpic.net/free-photo/stunning-young-woman-wearing-dress-posing-front-her-car-road-with-sky-background-ownership-driver_158595-6820.jpg", imageAlt: "2022 Mercedes-Benz E-Class"}, { - id: "5", - category: "Sedan", - name: "2021 Audi A4", - price: "$34,900", - rating: 4, - reviewCount: "38", - imageSrc: "http://img.b2bpic.net/free-photo/waiting-client-repairing-is-done-black-keys-leaning-hood-automobile_146671-16578.jpg?_wi=2", - imageAlt: "2021 Audi A4", - }, + id: "5", category: "Sedan", name: "2021 Audi A4", price: "$34,900", rating: 4, + reviewCount: "38", imageSrc: "http://img.b2bpic.net/free-photo/waiting-client-repairing-is-done-black-keys-leaning-hood-automobile_146671-16578.jpg", imageAlt: "2021 Audi A4"}, { - id: "6", - category: "SUV", - name: "2023 Kia Sorento", - price: "$31,200", - rating: 4, - reviewCount: "50", - imageSrc: "http://img.b2bpic.net/free-photo/person-taking-driver-s-license-exam_23-2149891400.jpg?_wi=2", - imageAlt: "2023 Kia Sorento", - }, + id: "6", category: "SUV", name: "2023 Kia Sorento", price: "$31,200", rating: 4, + reviewCount: "50", imageSrc: "http://img.b2bpic.net/free-photo/person-taking-driver-s-license-exam_23-2149891400.jpg", imageAlt: "2023 Kia Sorento"}, ]} searchPlaceholder="Search by make, model, or year..." filters={[ { - label: "Make", - options: [ - "All", - "BMW", - "Lexus", - "Porsche", - "Mercedes-Benz", - "Audi", - "Kia", - ], - selected: "All", + label: "Make", options: [ + "All", "BMW", "Lexus", "Porsche", "Mercedes-Benz", "Audi", "Kia"], + selected: "All", onChange: () => {}, }, { - label: "Price", - options: [ - "Any", - "$20k - $40k", - "$40k - $60k", - "$60k+", - ], - selected: "Any", + label: "Price", options: [ + "Any", "$20k - $40k", "$40k - $60k", "$60k+"], + selected: "Any", onChange: () => {}, }, { - label: "Body Type", - options: [ - "All", - "Sedan", - "SUV", - "Coupe", - "Convertible", - ], - selected: "All", + label: "Body Type", options: [ + "All", "Sedan", "SUV", "Coupe", "Convertible"], + selected: "All", onChange: () => {}, }, ]} emptyMessage="No vehicles found matching your criteria." @@ -179,23 +98,11 @@ export default function LandingPage() { useInvertedBackground={false} features={[ { - title: "Certified Quality", - description: "Every vehicle undergoes a meticulous multi-point inspection by certified technicians, ensuring top performance and safety.", - imageSrc: "http://img.b2bpic.net/free-photo/mechanics-checking-planning-workshop_329181-11858.jpg?_wi=2", - imageAlt: "mechanic inspecting car engine", - }, + title: "Certified Quality", description: "Every vehicle undergoes a meticulous multi-point inspection by certified technicians, ensuring top performance and safety.", imageSrc: "http://img.b2bpic.net/free-photo/mechanics-checking-planning-workshop_329181-11858.jpg", imageAlt: "mechanic inspecting car engine"}, { - title: "Transparent History", - description: "We provide comprehensive vehicle history reports (CarFax) for every car, so you can buy with complete confidence.", - imageSrc: "http://img.b2bpic.net/free-photo/business-woman-protection-mask-sitting-inside-car_1303-21466.jpg?_wi=2", - imageAlt: "carfax report document", - }, + title: "Transparent History", description: "We provide comprehensive vehicle history reports (CarFax) for every car, so you can buy with complete confidence.", imageSrc: "http://img.b2bpic.net/free-photo/business-woman-protection-mask-sitting-inside-car_1303-21466.jpg", imageAlt: "carfax report document"}, { - title: "Customer Satisfaction", - description: "Our commitment to excellence means a stress-free buying process and a dedicated team ready to assist you.", - imageSrc: "http://img.b2bpic.net/free-photo/we-like-this-lovely-successful-couple-trying-new-car-automobile-salon_146671-16035.jpg?_wi=2", - imageAlt: "car keys handover to happy customer", - }, + title: "Customer Satisfaction", description: "Our commitment to excellence means a stress-free buying process and a dedicated team ready to assist you.", imageSrc: "http://img.b2bpic.net/free-photo/we-like-this-lovely-successful-couple-trying-new-car-automobile-salon_146671-16035.jpg", imageAlt: "car keys handover to happy customer"}, ]} title="Why Choose Twins Motors?" description="We ensure every vehicle meets our rigorous standards of quality and reliability, backed by transparent service and an exceptional customer experience." @@ -210,45 +117,17 @@ export default function LandingPage() { useInvertedBackground={false} products={[ { - id: "1", - brand: "Mercedes-Benz", - name: "C 300 Sedan", - price: "$45,000", - rating: 5, - reviewCount: "22", - imageSrc: "http://img.b2bpic.net/free-photo/stunning-young-woman-wearing-dress-posing-front-her-car-road-with-sky-background-ownership-driver_158595-6820.jpg?_wi=3", - imageAlt: "Mercedes-Benz C 300 Sedan", - }, + id: "1", brand: "Mercedes-Benz", name: "C 300 Sedan", price: "$45,000", rating: 5, + reviewCount: "22", imageSrc: "http://img.b2bpic.net/free-photo/stunning-young-woman-wearing-dress-posing-front-her-car-road-with-sky-background-ownership-driver_158595-6820.jpg", imageAlt: "Mercedes-Benz C 300 Sedan"}, { - id: "2", - brand: "BMW", - name: "X5 xDrive40i SUV", - price: "$58,000", - rating: 4, - reviewCount: "15", - imageSrc: "http://img.b2bpic.net/free-photo/black-vintage-car-driving-road-longing-accross-forest_114579-4062.jpg?_wi=3", - imageAlt: "BMW X5 xDrive40i SUV", - }, + id: "2", brand: "BMW", name: "X5 xDrive40i SUV", price: "$58,000", rating: 4, + reviewCount: "15", imageSrc: "http://img.b2bpic.net/free-photo/black-vintage-car-driving-road-longing-accross-forest_114579-4062.jpg", imageAlt: "BMW X5 xDrive40i SUV"}, { - id: "3", - brand: "Porsche", - name: "Macan S", - price: "$67,500", - rating: 5, - reviewCount: "10", - imageSrc: "http://img.b2bpic.net/free-photo/business-man-choosing-car-car-showroom_1303-24069.jpg?_wi=3", - imageAlt: "Porsche Macan S", - }, + id: "3", brand: "Porsche", name: "Macan S", price: "$67,500", rating: 5, + reviewCount: "10", imageSrc: "http://img.b2bpic.net/free-photo/business-man-choosing-car-car-showroom_1303-24069.jpg", imageAlt: "Porsche Macan S"}, { - id: "4", - brand: "Lexus", - name: "ES 350", - price: "$39,800", - rating: 4, - reviewCount: "28", - imageSrc: "http://img.b2bpic.net/free-photo/modern-station-wagon-driving-winter-highway-sunset-car-snowy-road_169016-71836.jpg?_wi=3", - imageAlt: "Lexus ES 350", - }, + id: "4", brand: "Lexus", name: "ES 350", price: "$39,800", rating: 4, + reviewCount: "28", imageSrc: "http://img.b2bpic.net/free-photo/modern-station-wagon-driving-winter-highway-sunset-car-snowy-road_169016-71836.jpg", imageAlt: "Lexus ES 350"}, ]} title="Spotlight Vehicles" description="Discover some of our most stunning and sought-after models, hand-picked for their exceptional features and value." @@ -259,75 +138,45 @@ export default function LandingPage() { @@ -76,15 +56,11 @@ export default function LandingPage() { tagIcon={Star} buttons={[ { - text: "Browse Inventory", - href: "/inventory", - }, + text: "Browse Inventory", href: "/inventory"}, { - text: "Schedule a Test Drive", - href: "/contact", - }, + text: "Schedule a Test Drive", href: "/contact"}, ]} - imageSrc="http://img.b2bpic.net/free-photo/young-woman-buying-car_1303-13630.jpg?_wi=1" + imageSrc="http://img.b2bpic.net/free-photo/young-woman-buying-car_1303-13630.jpg" videoSrc="http://img.b2bpic.net/free-photo/one-person-modern-businessman-trying-his-new-car-automobile-salon_146671-16039.jpg" textPosition="center" /> @@ -98,61 +74,29 @@ export default function LandingPage() { useInvertedBackground={false} products={[ { - id: "1", - name: "Audi Sedan", - price: "$35,000", - imageSrc: "http://img.b2bpic.net/free-photo/waiting-client-repairing-is-done-black-keys-leaning-hood-automobile_146671-16578.jpg?_wi=1", - imageAlt: "Audi Sedan", - onProductClick: "() => console.log('View Audi Details')", + id: "1", name: "Audi Sedan", price: "$35,000", imageSrc: "http://img.b2bpic.net/free-photo/waiting-client-repairing-is-done-black-keys-leaning-hood-automobile_146671-16578.jpg", imageAlt: "Audi Sedan", onProductClick: () => console.log('View Audi Details'), }, { - id: "2", - name: "2016 Kia Sorento", - price: "$22,500", - imageSrc: "http://img.b2bpic.net/free-photo/person-taking-driver-s-license-exam_23-2149891400.jpg?_wi=1", - imageAlt: "2016 Kia Sorento", - onProductClick: "() => console.log('View Kia Details')", + id: "2", name: "2016 Kia Sorento", price: "$22,500", imageSrc: "http://img.b2bpic.net/free-photo/person-taking-driver-s-license-exam_23-2149891400.jpg", imageAlt: "2016 Kia Sorento", onProductClick: () => console.log('View Kia Details'), }, { - id: "3", - name: "Mercedes-Benz C-Class", - price: "$48,000", - imageSrc: "http://img.b2bpic.net/free-photo/stunning-young-woman-wearing-dress-posing-front-her-car-road-with-sky-background-ownership-driver_158595-6820.jpg?_wi=1", - imageAlt: "Mercedes-Benz C-Class", - onProductClick: "() => console.log('View Mercedes Details')", + id: "3", name: "Mercedes-Benz C-Class", price: "$48,000", imageSrc: "http://img.b2bpic.net/free-photo/stunning-young-woman-wearing-dress-posing-front-her-car-road-with-sky-background-ownership-driver_158595-6820.jpg", imageAlt: "Mercedes-Benz C-Class", onProductClick: () => console.log('View Mercedes Details'), }, { - id: "4", - name: "BMW 3 Series", - price: "$42,000", - imageSrc: "http://img.b2bpic.net/free-photo/black-vintage-car-driving-road-longing-accross-forest_114579-4062.jpg?_wi=1", - imageAlt: "BMW 3 Series", - onProductClick: "() => console.log('View BMW Details')", + id: "4", name: "BMW 3 Series", price: "$42,000", imageSrc: "http://img.b2bpic.net/free-photo/black-vintage-car-driving-road-longing-accross-forest_114579-4062.jpg", imageAlt: "BMW 3 Series", onProductClick: () => console.log('View BMW Details'), }, { - id: "5", - name: "Porsche 911", - price: "$95,000", - imageSrc: "http://img.b2bpic.net/free-photo/business-man-choosing-car-car-showroom_1303-24069.jpg?_wi=1", - imageAlt: "Porsche 911", - onProductClick: "() => console.log('View Porsche Details')", + id: "5", name: "Porsche 911", price: "$95,000", imageSrc: "http://img.b2bpic.net/free-photo/business-man-choosing-car-car-showroom_1303-24069.jpg", imageAlt: "Porsche 911", onProductClick: () => console.log('View Porsche Details'), }, { - id: "6", - name: "Lexus RX 350", - price: "$38,000", - imageSrc: "http://img.b2bpic.net/free-photo/modern-station-wagon-driving-winter-highway-sunset-car-snowy-road_169016-71836.jpg?_wi=1", - imageAlt: "Lexus RX 350", - onProductClick: "() => console.log('View Lexus Details')", + id: "6", name: "Lexus RX 350", price: "$38,000", imageSrc: "http://img.b2bpic.net/free-photo/modern-station-wagon-driving-winter-highway-sunset-car-snowy-road_169016-71836.jpg", imageAlt: "Lexus RX 350", onProductClick: () => console.log('View Lexus Details'), }, ]} title="Our Featured Inventory" description="Hand-picked luxury vehicles awaiting their next journey. Explore our curated selection." buttons={[ { - text: "View All Inventory", - href: "/inventory", - }, + text: "View All Inventory", href: "/inventory"}, ]} /> @@ -165,68 +109,38 @@ export default function LandingPage() { features={[ { id: 1, - title: "Honest & Transparent Deals", - description: "We believe in clear communication and fair pricing, ensuring you get the best value.", - phoneOne: { - imageSrc: "http://img.b2bpic.net/free-photo/stylish-elegant-people-car-salon_1157-24294.jpg?_wi=1", - imageAlt: "Handshake over car keys", - }, + title: "Honest & Transparent Deals", description: "We believe in clear communication and fair pricing, ensuring you get the best value.", phoneOne: { + imageSrc: "http://img.b2bpic.net/free-photo/stylish-elegant-people-car-salon_1157-24294.jpg", imageAlt: "Handshake over car keys"}, phoneTwo: { - imageSrc: "http://img.b2bpic.net/free-photo/we-like-this-lovely-successful-couple-trying-new-car-automobile-salon_146671-16035.jpg?_wi=1", - imageAlt: "Happy client signing car papers", - }, + imageSrc: "http://img.b2bpic.net/free-photo/we-like-this-lovely-successful-couple-trying-new-car-automobile-salon_146671-16035.jpg", imageAlt: "Happy client signing car papers"}, }, { id: 2, - title: "Carfax Reports Explained Clearly", - description: "Understand your vehicle's history with easy-to-read Carfax reports, fully explained by our team.", - phoneOne: { - imageSrc: "http://img.b2bpic.net/free-photo/business-woman-protection-mask-sitting-inside-car_1303-21466.jpg?_wi=1", - imageAlt: "Carfax report document", - }, + title: "Carfax Reports Explained Clearly", description: "Understand your vehicle's history with easy-to-read Carfax reports, fully explained by our team.", phoneOne: { + imageSrc: "http://img.b2bpic.net/free-photo/business-woman-protection-mask-sitting-inside-car_1303-21466.jpg", imageAlt: "Carfax report document"}, phoneTwo: { - imageSrc: "http://img.b2bpic.net/free-photo/mechanics-checking-planning-workshop_329181-11858.jpg?_wi=1", - imageAlt: "Mechanic checking vehicle", - }, + imageSrc: "http://img.b2bpic.net/free-photo/mechanics-checking-planning-workshop_329181-11858.jpg", imageAlt: "Mechanic checking vehicle"}, }, { id: 3, - title: "Fast & Smooth Buying Process", - description: "Our streamlined process gets you on the road quicker, with minimal hassle and maximum efficiency.", - phoneOne: { - imageSrc: "http://img.b2bpic.net/free-photo/stylish-businessman-standing-near-car-use-laptop_1157-27350.jpg?_wi=1", - imageAlt: "Fast car on road", - }, + title: "Fast & Smooth Buying Process", description: "Our streamlined process gets you on the road quicker, with minimal hassle and maximum efficiency.", phoneOne: { + imageSrc: "http://img.b2bpic.net/free-photo/stylish-businessman-standing-near-car-use-laptop_1157-27350.jpg", imageAlt: "Fast car on road"}, phoneTwo: { - imageSrc: "http://img.b2bpic.net/free-photo/rear-view-young-woman-climbing-stairs_1139-145.jpg?_wi=1", - imageAlt: "Handing over car keys", - }, + imageSrc: "http://img.b2bpic.net/free-photo/rear-view-young-woman-climbing-stairs_1139-145.jpg", imageAlt: "Handing over car keys"}, }, { id: 4, - title: "Friendly, No-Pressure Service", - description: "Enjoy a relaxed and helpful environment where your needs come first, without any sales pressure.", - phoneOne: { - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-working_23-2149908135.jpg?_wi=1", - imageAlt: "Salesperson assisting customer", - }, + title: "Friendly, No-Pressure Service", description: "Enjoy a relaxed and helpful environment where your needs come first, without any sales pressure.", phoneOne: { + imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-working_23-2149908135.jpg", imageAlt: "Salesperson assisting customer"}, phoneTwo: { - imageSrc: "http://img.b2bpic.net/free-photo/modern-interior-design-living-room-with-soft-sofa-background-wooden-wall-minim_1258-134117.jpg?_wi=1", - imageAlt: "Luxury showroom interior", - }, + imageSrc: "http://img.b2bpic.net/free-photo/modern-interior-design-living-room-with-soft-sofa-background-wooden-wall-minim_1258-134117.jpg", imageAlt: "Luxury showroom interior"}, }, { id: 5, - title: "Top Rated (4.9 ★ Google Reviews)", - description: "Our customers speak for us! Join the many satisfied drivers who trust Twins Motors.", - phoneOne: { - imageSrc: "http://img.b2bpic.net/free-photo/cute-young-woman-student-business-lady-showing-thumbs-up-well-done-sitting-outdoor-cafe-terrace-with-laptop-wearing-pink-smart-clothes_197531-3122.jpg", - imageAlt: "Five star rating", - }, + title: "Top Rated (4.9 ★ Google Reviews)", description: "Our customers speak for us! Join the many satisfied drivers who trust Twins Motors.", phoneOne: { + imageSrc: "http://img.b2bpic.net/free-photo/cute-young-woman-student-business-lady-showing-thumbs-up-well-done-sitting-outdoor-cafe-terrace-with-laptop-wearing-pink-smart-clothes_197531-3122.jpg", imageAlt: "Five star rating"}, phoneTwo: { - imageSrc: "http://img.b2bpic.net/free-vector/emoji-ratings-set_78370-4153.jpg", - imageAlt: "Google reviews badge", - }, + imageSrc: "http://img.b2bpic.net/free-vector/emoji-ratings-set_78370-4153.jpg", imageAlt: "Google reviews badge"}, }, ]} showStepNumbers={false} @@ -241,53 +155,17 @@ export default function LandingPage() { useInvertedBackground={false} testimonials={[ { - id: "1", - title: "Exceptional Service!", - quote: "Super helpful and honest, everything was clearly explained. Buying a car here was a fantastic experience from start to finish.", - name: "Sarah Johnson", - role: "Happy Customer", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-man-with-his-new-car_23-2148332983.jpg?_wi=1", - }, + id: "1", title: "Exceptional Service!", quote: "Super helpful and honest, everything was clearly explained. Buying a car here was a fantastic experience from start to finish.", name: "Sarah Johnson", role: "Happy Customer", imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-man-with-his-new-car_23-2148332983.jpg"}, { - id: "2", - title: "Smooth & Stress-Free", - quote: "Fast, smooth, and stress-free experience. The team at Twins Motors made finding my dream car incredibly easy.", - name: "Michael Chen", - role: "Satisfied Buyer", - imageSrc: "http://img.b2bpic.net/free-photo/elegant-woman-standing-by-car_1157-33895.jpg?_wi=1", - }, + id: "2", title: "Smooth & Stress-Free", quote: "Fast, smooth, and stress-free experience. The team at Twins Motors made finding my dream car incredibly easy.", name: "Michael Chen", role: "Satisfied Buyer", imageSrc: "http://img.b2bpic.net/free-photo/elegant-woman-standing-by-car_1157-33895.jpg"}, { - id: "3", - title: "Professional & Trustworthy", - quote: "Very professional and trustworthy service. I felt confident in my purchase and would highly recommend them.", - name: "Emily Rodriguez", - role: "Loyal Client", - imageSrc: "http://img.b2bpic.net/free-photo/happy-customers-car-dealership_23-2149106166.jpg?_wi=1", - }, + id: "3", title: "Professional & Trustworthy", quote: "Very professional and trustworthy service. I felt confident in my purchase and would highly recommend them.", name: "Emily Rodriguez", role: "Loyal Client", imageSrc: "http://img.b2bpic.net/free-photo/happy-customers-car-dealership_23-2149106166.jpg"}, { - id: "4", - title: "Best Dealership!", - quote: "The best car buying experience I've ever had. Their transparency and friendly approach truly set them apart.", - name: "David Kim", - role: "New Car Owner", - imageSrc: "http://img.b2bpic.net/free-photo/business-people-talking-about-new-project_23-2148778072.jpg?_wi=1", - }, + id: "4", title: "Best Dealership!", quote: "The best car buying experience I've ever had. Their transparency and friendly approach truly set them apart.", name: "David Kim", role: "New Car Owner", imageSrc: "http://img.b2bpic.net/free-photo/business-people-talking-about-new-project_23-2148778072.jpg"}, { - id: "5", - title: "Outstanding Support", - quote: "From financing to delivery, the support was outstanding. They went above and beyond to ensure I was happy.", - name: "Jessica Lee", - role: "Customer", - imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-black-businessman-buys-new-car-he-signs-contract-takes-keys-manager_146671-18402.jpg?_wi=1", - }, + id: "5", name: "Outstanding Support", quote: "From financing to delivery, the support was outstanding. They went above and beyond to ensure I was happy.", name: "Jessica Lee", role: "Customer", imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-black-businessman-buys-new-car-he-signs-contract-takes-keys-manager_146671-18402.jpg"}, { - id: "6", - title: "Highly Recommended", - quote: "I highly recommend Twins Motors for anyone looking for a premium pre-owned vehicle. Unbeatable service!", - name: "Robert Green", - role: "Repeat Customer", - imageSrc: "http://img.b2bpic.net/free-photo/engineer-does-checkup-client-car_482257-76153.jpg?_wi=1", - }, + id: "6", title: "Highly Recommended", quote: "I highly recommend Twins Motors for anyone looking for a premium pre-owned vehicle. Unbeatable service!", name: "Robert Green", role: "Repeat Customer", imageSrc: "http://img.b2bpic.net/free-photo/engineer-does-checkup-client-car_482257-76153.jpg"}, ]} title="What Our Customers Say" description="Hear from our satisfied clients who experienced the Twins Motors difference." @@ -298,18 +176,13 @@ export default function LandingPage() { @@ -321,19 +194,13 @@ export default function LandingPage() { socialLinks={[ { icon: Facebook, - href: "https://facebook.com/TwinsMotors", - ariaLabel: "Facebook", - }, + href: "https://facebook.com/TwinsMotors", ariaLabel: "Facebook"}, { icon: Instagram, - href: "https://instagram.com/TwinsMotors", - ariaLabel: "Instagram", - }, + href: "https://instagram.com/TwinsMotors", ariaLabel: "Instagram"}, { - icon: "X", - href: "https://twitter.com/TwinsMotors", - ariaLabel: "Twitter", - }, + icon: X, + href: "https://twitter.com/TwinsMotors", ariaLabel: "Twitter"}, ]} />