diff --git a/src/app/page.tsx b/src/app/page.tsx index 2a6fe15..e58ce99 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,6 @@ import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonia import MediaAbout from '@/components/sections/about/MediaAbout'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; export default function LandingPage() { @@ -57,6 +56,7 @@ export default function LandingPage() { title="Curated for the Enthusiast" description="At Private Selection Motorsports, we don't just sell cars; we sell experiences. Every vehicle in our showroom is meticulously inspected and verified to meet the highest standards of performance and reliability. We offer seamless shipping to bring your next car to your doorstep anywhere in the US." imageSrc="http://img.b2bpic.net/free-photo/3d-rendering-abstract-black-white-neon_23-2150853414.jpg?_wi=1" + useInvertedBackground={false} /> @@ -69,9 +69,9 @@ export default function LandingPage() { title="Current Inventory" description="Hand-selected performance vehicles ready for delivery." products={[ - { id: "p1", brand: "Porsche", name: "911 Carrera S", price: "$125,000", imageSrc: "http://img.b2bpic.net/free-photo/ladies-car-salon-woman-buying-car-elegant-woman-blue-dress-manager-helps-client_1157-45023.jpg" }, - { id: "p2", brand: "Ferrari", name: "488 Spider", price: "$280,000", imageSrc: "http://img.b2bpic.net/free-photo/sport-car-with-black-white-autotuning_114579-4075.jpg" }, - { id: "p3", brand: "Lamborghini", name: "Huracán Evo", price: "$310,000", imageSrc: "http://img.b2bpic.net/free-photo/car-being-taking-care-workshop_23-2149580533.jpg" } + { id: "p1", brand: "Porsche", name: "911 Carrera S", price: "$125,000", rating: 5, reviewCount: "128", imageSrc: "http://img.b2bpic.net/free-photo/ladies-car-salon-woman-buying-car-elegant-woman-blue-dress-manager-helps-client_1157-45023.jpg" }, + { id: "p2", brand: "Ferrari", name: "488 Spider", price: "$280,000", rating: 5, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/sport-car-with-black-white-autotuning_114579-4075.jpg" }, + { id: "p3", brand: "Lamborghini", name: "Huracán Evo", price: "$310,000", rating: 5, reviewCount: "92", imageSrc: "http://img.b2bpic.net/free-photo/car-being-taking-care-workshop_23-2149580533.jpg" } ]} /> @@ -82,6 +82,7 @@ export default function LandingPage() { textboxLayout="default" title="Why Private Selection" description="Experience a dealership that understands the passion for high performance and delivers worldwide." + useInvertedBackground={false} features={[ { title: "Rigorous Inspections", description: "Every car is vetted for technical integrity.", imageSrc: "http://img.b2bpic.net/free-photo/senior-man-car-showroom-choosing-car_1303-18967.jpg" }, { title: "Nationwide Shipping", description: "Fast, secure delivery to anywhere in the US.", imageSrc: "http://img.b2bpic.net/free-photo/stylish-elegant-woman-car-salon_1157-22346.jpg" }, @@ -94,6 +95,8 @@ export default function LandingPage() {