5 Commits

Author SHA1 Message Date
db93f02d60 Merge version_3 into main
Merge version_3 into main
2026-04-24 18:55:15 +00:00
46d97d385b Update src/app/page.tsx 2026-04-24 18:55:12 +00:00
948c134a16 Merge version_2 into main
Merge version_2 into main
2026-04-24 18:53:47 +00:00
892b402321 Update src/app/page.tsx 2026-04-24 18:53:44 +00:00
32427e7b6b Merge version_1 into main
Merge version_1 into main
2026-04-24 18:52:10 +00:00

View File

@@ -74,9 +74,13 @@ 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: "View Details", href: "#contact" },
{ text: "Configure Now", href: "#contact" }
]}
title="Our Inventory"
description="Discover our collection of elite performance machines."
@@ -170,4 +174,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}