From a3b850887e8e5d3614ce9d163913f14c12c460c6 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 12 Jun 2026 22:13:17 +0000 Subject: [PATCH] Update src/app/inventory/page.tsx --- src/app/inventory/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/inventory/page.tsx b/src/app/inventory/page.tsx index 3b77092..c9de288 100644 --- a/src/app/inventory/page.tsx +++ b/src/app/inventory/page.tsx @@ -48,22 +48,22 @@ export default function InventoryPage() { layout="page" products={[ { - id: "i-1", name: "Activa 6G", rating: 5, + id: "i-1", name: "Activa 6G", price: "₹75,000", rating: 5, reviewCount: "2.5K", imageSrc: "asset://product-honda-activa", imageAlt: "Honda Activa 6G scooter"}, { - id: "i-2", name: "Ntorq 125", rating: 4, + id: "i-2", name: "Ntorq 125", price: "₹95,000", rating: 4, reviewCount: "1.8K", imageSrc: "asset://product-tvs-ntorq", imageAlt: "TVS Ntorq 125 scooter"}, { - id: "i-3", name: "Classic 350", rating: 5, + id: "i-3", name: "Classic 350", price: "₹1,90,000", rating: 5, reviewCount: "3.1K", imageSrc: "asset://product-royal-enfield-classic", imageAlt: "Royal Enfield Classic 350 motorcycle"}, { - id: "i-4", name: "Maestro Edge 125", rating: 4, + id: "i-4", name: "Maestro Edge 125", price: "₹82,000", rating: 4, reviewCount: "1.1K", imageSrc: "asset://product-hero-maestro", imageAlt: "Hero Maestro Edge 125 scooter"}, { - id: "i-5", name: "Gixxer SF 155", rating: 5, + id: "i-5", name: "Gixxer SF 155", price: "₹1,45,000", rating: 5, reviewCount: "900", imageSrc: "asset://product-suzuki-gixxer", imageAlt: "Suzuki Gixxer SF 155 motorcycle"}, { - id: "i-6", name: "Platina 110", rating: 4, + id: "i-6", name: "Platina 110", price: "₹68,000", rating: 4, reviewCount: "1.4K", imageSrc: "asset://product-bajaj-platina", imageAlt: "Bajaj Platina 110 motorcycle"}, ]} onSearchChange={() => {}} -- 2.49.1