From 6e4699e36e475dba2fb30adafbbdabe88162df2d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 30 Apr 2026 14:40:38 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 60910a7..5f73eb1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -96,22 +96,25 @@ export default function LandingPage() { products={[ { id: "p1", brand: "Toyota", name: "Corolla 2023", price: "$45/day", rating: 5, - reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/young-couple-choosing-car-car-show-room_1303-15114.jpg"}, + reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/young-couple-choosing-car-car-show-room_1303-15114.jpg", onProductClick: () => { window.location.href = '#contact'; }}, { id: "p2", brand: "Volkswagen", name: "Gol Trend", price: "$30/day", rating: 4, - reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-posing-front-modern-car_23-2148384978.jpg"}, + reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-posing-front-modern-car_23-2148384978.jpg", onProductClick: () => { window.location.href = '#contact'; }}, { id: "p3", brand: "Ford", name: "Fiesta Kinetic", price: "$38/day", rating: 5, - reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/red-pickup-model-black-floor_1150-16352.jpg"}, + reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/red-pickup-model-black-floor_1150-16352.jpg", onProductClick: () => { window.location.href = '#contact'; }}, { id: "p4", brand: "Renault", name: "Kwid", price: "$25/day", rating: 4, - reviewCount: "60", imageSrc: "http://img.b2bpic.net/free-photo/stylish-elegant-couple-car-salon_1157-22041.jpg"}, + reviewCount: "60", imageSrc: "http://img.b2bpic.net/free-photo/stylish-elegant-couple-car-salon_1157-22041.jpg", onProductClick: () => { window.location.href = '#contact'; }}, { id: "p5", brand: "Peugeot", name: "208", price: "$40/day", rating: 5, - reviewCount: "110", imageSrc: "http://img.b2bpic.net/free-photo/stylish-woman-front-car_23-2147724809.jpg"}, + reviewCount: "110", imageSrc: "http://img.b2bpic.net/free-photo/stylish-woman-front-car_23-2147724809.jpg", onProductClick: () => { window.location.href = '#contact'; }}, { id: "p6", brand: "Fiat", name: "Cronos", price: "$35/day", rating: 5, - reviewCount: "75", imageSrc: "http://img.b2bpic.net/free-photo/child-perspective-motorcar-generic-race_1232-3545.jpg"}, + reviewCount: "75", imageSrc: "http://img.b2bpic.net/free-photo/child-perspective-motorcar-generic-race_1232-3545.jpg", onProductClick: () => { window.location.href = '#contact'; }}, + ]} + buttons={[ + { text: "Check Availability", onClick: () => { document.getElementById('contact')?.scrollIntoView({ behavior: 'smooth' }); } } ]} title="Find Your Perfect Car" description="Explore available vehicles in Córdoba and beyond." @@ -234,4 +237,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1