From 3381f7b00bfffcc3f743b7e2b19cc118f9cea4d3 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 13 Apr 2026 14:10:46 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ec09d01..3ccf6ff 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -85,10 +85,10 @@ export default function LandingPage() { gridVariant="four-items-2x2-equal-grid" useInvertedBackground={false} products={[ - { id: "p1", brand: "Elite", name: "Performance Sport Tyre", price: "$135", imageSrc: "http://img.b2bpic.net/free-photo/close-up-model-small-cars-overpass-traffic-concepts_1150-20142.jpg" }, - { id: "p2", brand: "Value", name: "City Commuter Tyre", price: "$80", imageSrc: "http://img.b2bpic.net/free-photo/outdoors-cobblestone-texture-with-car-wheel_23-2149432974.jpg" }, - { id: "p3", brand: "Premium", name: "Alloy Mag Rim", price: "$280", imageSrc: "http://img.b2bpic.net/free-photo/view-3d-film-roll_23-2150866027.jpg" }, - { id: "p4", brand: "Heavy", name: "All-Terrain Specialist", price: "$210", imageSrc: "http://img.b2bpic.net/free-photo/back-side-wheel-vintage-black-sedan-car_114579-4027.jpg" } + { id: "p1", brand: "Elite", name: "Performance Sport Tyre", price: "$135", imageSrc: "http://img.b2bpic.net/free-photo/close-up-model-small-cars-overpass-traffic-concepts_1150-20142.jpg", rating: 5, reviewCount: "120" }, + { id: "p2", brand: "Value", name: "City Commuter Tyre", price: "$80", imageSrc: "http://img.b2bpic.net/free-photo/outdoors-cobblestone-texture-with-car-wheel_23-2149432974.jpg", rating: 4, reviewCount: "85" }, + { id: "p3", brand: "Premium", name: "Alloy Mag Rim", price: "$280", imageSrc: "http://img.b2bpic.net/free-photo/view-3d-film-roll_23-2150866027.jpg", rating: 5, reviewCount: "45" }, + { id: "p4", brand: "Heavy", name: "All-Terrain Specialist", price: "$210", imageSrc: "http://img.b2bpic.net/free-photo/back-side-wheel-vintage-black-sedan-car_114579-4027.jpg", rating: 5, reviewCount: "210" } ]} title="Inventory & Rims" description="Explore our curated selection of high-performance tyres and alloy rims ready for fitment." -- 2.49.1