From 892b402321f9d6aeef93797fddde9cb53482456f Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 24 Apr 2026 18:53:44 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index e66cdfc..9cedc2d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -74,10 +74,11 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" useInvertedBackground={true} products={[ - { id: "p1", brand: "Apex", name: "GT-R", price: "$125,000", rating: 5, reviewCount: "42", imageSrc: "http://img.b2bpic.net/free-photo/people-driving-cars-city-street_23-2149092020.jpg", imageAlt: "luxury sedan city street night" }, - { id: "p2", brand: "Apex", name: "E-Hyper", price: "$295,000", rating: 5, reviewCount: "18", imageSrc: "http://img.b2bpic.net/free-photo/view-three-dimensional-car-model_23-2151138991.jpg", imageAlt: "electric hypercar top view" }, - { id: "p3", brand: "Apex", name: "Terra SUV", price: "$85,000", rating: 4, reviewCount: "64", imageSrc: "http://img.b2bpic.net/free-photo/people-getting-ready-winter-camping_23-2149237488.jpg", imageAlt: "luxury suv mountain landscape" } + { id: "p1", brand: "Apex", name: "GT-R", price: "$125,000", rating: 5, reviewCount: "42", imageSrc: "http://img.b2bpic.net/free-photo/people-driving-cars-city-street_23-2149092020.jpg", imageAlt: "luxury sedan city street night", onProductClick: () => { window.location.href = "#contact"; } }, + { id: "p2", brand: "Apex", name: "E-Hyper", price: "$295,000", rating: 5, reviewCount: "18", imageSrc: "http://img.b2bpic.net/free-photo/view-three-dimensional-car-model_23-2151138991.jpg", imageAlt: "electric hypercar top view", onProductClick: () => { window.location.href = "#contact"; } }, + { id: "p3", brand: "Apex", name: "Terra SUV", price: "$85,000", rating: 4, reviewCount: "64", imageSrc: "http://img.b2bpic.net/free-photo/people-getting-ready-winter-camping_23-2149237488.jpg", imageAlt: "luxury suv mountain landscape", onProductClick: () => { window.location.href = "#contact"; } } ]} + buttons={[{ text: "Configure Now", href: "#contact" }]} title="Our Inventory" description="Discover our collection of elite performance machines." /> @@ -170,4 +171,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1