Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6e4699e36e | |||
| 5bbae5258d |
@@ -96,22 +96,25 @@ export default function LandingPage() {
|
|||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "p1", brand: "Toyota", name: "Corolla 2023", price: "$45/day", rating: 5,
|
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,
|
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,
|
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,
|
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,
|
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,
|
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"
|
title="Find Your Perfect Car"
|
||||||
description="Explore available vehicles in Córdoba and beyond."
|
description="Explore available vehicles in Córdoba and beyond."
|
||||||
@@ -234,4 +237,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user