diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index 3315bbd..58ca361 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -1,6 +1,18 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import { + CTAButtonVariant, + TextAnimationType, + BorderRadius, + ContentWidth, + Sizing, + Background, + CardStyle, + PrimaryButtonStyle, + SecondaryButtonStyle, + HeadingFontWeight +} from "@/providers/themeProvider/ThemeProvider.types"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; @@ -14,7 +26,17 @@ export default function GalleryPage() { ]; const themeProps = { - defaultButtonVariant: "shift-hover", defaultTextAnimation: "entrance-slide", borderRadius: "rounded", contentWidth: "mediumLarge", sizing: "medium", background: "noiseDiagonalGradient", cardStyle: "subtle-shadow", primaryButtonStyle: "shadow", secondaryButtonStyle: "solid", headingFontWeight: "bold"}; + defaultButtonVariant: "shift-hover" as CTAButtonVariant, + defaultTextAnimation: "entrance-slide" as TextAnimationType, + borderRadius: "rounded" as BorderRadius, + contentWidth: "mediumLarge" as ContentWidth, + sizing: "medium" as Sizing, + background: "noiseDiagonalGradient" as Background, + cardStyle: "subtle-shadow" as CardStyle, + primaryButtonStyle: "shadow" as PrimaryButtonStyle, + secondaryButtonStyle: "solid" as SecondaryButtonStyle, + headingFontWeight: "bold" as HeadingFontWeight + }; return ( @@ -33,22 +55,22 @@ export default function GalleryPage() { description="Hand-picked luxury vehicles awaiting their next journey. Explore our curated selection." 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=3", 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=3", 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=3", 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=3", 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=3", 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=3", 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') } ]} gridVariant="uniform-all-items-equal" @@ -69,22 +91,22 @@ export default function GalleryPage() { description="Hear from our satisfied clients who experienced the Twins Motors difference." 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=2" + 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=2" + 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=2" + 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=2" + 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=2" + 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" }, { - 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=2" + 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" } ]} textboxLayout="default" diff --git a/src/app/inventory/page.tsx b/src/app/inventory/page.tsx index 8f31c1f..ea87107 100644 --- a/src/app/inventory/page.tsx +++ b/src/app/inventory/page.tsx @@ -51,12 +51,12 @@ export default function InventoryPage() { title="Explore Our Full Inventory" description="Browse our comprehensive collection of premium pre-owned vehicles. Find your perfect match." 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=2", 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=2", 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=2", 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=2", 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=2", 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=2", imageAlt: "Lexus RX 350", onProductClick: () => console.log('View Lexus 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", 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", 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", 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", 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", imageAlt: "Lexus RX 350", onProductClick: () => console.log('View Lexus Details') } ]} gridVariant="uniform-all-items-equal" animationType="slide-up" @@ -64,6 +64,7 @@ export default function InventoryPage() { buttons={[ { text: "Apply for Financing", href: "/financing" } ]} + useInvertedBackground={false} /> @@ -72,12 +73,13 @@ export default function InventoryPage() { title="Why Buy From Twins Motors?" description="We make the process simple, transparent, and enjoyable. Here's what sets us apart." 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=2", 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=2", 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=2", imageAlt: "Carfax report document" }, phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/mechanics-checking-planning-workshop_329181-11858.jpg?_wi=2", imageAlt: "Mechanic checking vehicle" } } + { 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", 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", 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", imageAlt: "Carfax report document" }, phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/mechanics-checking-planning-workshop_329181-11858.jpg", imageAlt: "Mechanic checking vehicle" } } ]} showStepNumbers={false} animationType="slide-up" textboxLayout="default" + useInvertedBackground={false} /> @@ -89,6 +91,7 @@ export default function InventoryPage() { { text: "Get Pre-Approved", href: "/financing" } ]} background={{ variant: "radial-gradient" }} + useInvertedBackground={false} /> diff --git a/src/app/page.tsx b/src/app/page.tsx index b58a80b..7767ce3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -69,12 +69,12 @@ export default function HomePage() { title="Our Featured Inventory" description="Hand-picked luxury vehicles awaiting their next journey. Explore our curated selection." 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: "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: "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: "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: "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: "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: "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", 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", 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", 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", 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", imageAlt: "Lexus RX 350", onProductClick: () => console.log('View Lexus Details') } ]} gridVariant="uniform-all-items-equal" animationType="slide-up" @@ -82,6 +82,7 @@ export default function HomePage() { buttons={[ { text: "View All Inventory", href: "/inventory" } ]} + useInvertedBackground={false} /> @@ -90,8 +91,8 @@ export default function HomePage() { title="Why Choose Twins Motors" description="Experience a car buying journey built on transparency, trust, and exceptional service." 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" }, 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" } }, - { 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" }, phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/mechanics-checking-planning-workshop_329181-11858.jpg?_wi=1", imageAlt: "Mechanic checking vehicle" } }, + { 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", 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", 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", imageAlt: "Carfax report document" }, phoneTwo: { 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", imageAlt: "Fast car on road" }, phoneTwo: { 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", 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", 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" }, phoneTwo: { imageSrc: "http://img.b2bpic.net/free-vector/emoji-ratings-set_78370-4153.jpg", imageAlt: "Google reviews badge" } } @@ -99,6 +100,7 @@ export default function HomePage() { showStepNumbers={false} animationType="slide-up" textboxLayout="default" + useInvertedBackground={false} /> @@ -107,14 +109,15 @@ export default function HomePage() { title="What Our Customers Say" description="Hear from our satisfied clients who experienced the Twins Motors difference." 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: "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: "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: "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: "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: "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: "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" }, + { 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" }, + { 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" }, + { 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" } ]} textboxLayout="default" + useInvertedBackground={false} /> @@ -126,6 +129,7 @@ export default function HomePage() { { text: "Contact Us Now", href: "/contact" } ]} background={{ variant: "radial-gradient" }} + useInvertedBackground={false} />