From 11e05f1dfa65cb07fd66c903af39c6a7d358c812 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 4 Jun 2026 15:32:37 +0000 Subject: [PATCH] Update src/app/inventory/page.tsx --- src/app/inventory/page.tsx | 57 +++++++++++++++++++------------------- 1 file changed, 28 insertions(+), 29 deletions(-) diff --git a/src/app/inventory/page.tsx b/src/app/inventory/page.tsx index 9f7533b..ccedddb 100644 --- a/src/app/inventory/page.tsx +++ b/src/app/inventory/page.tsx @@ -1,7 +1,6 @@ "use client"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import FooterCard from '@/components/sections/footer/FooterCard'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { Instagram, Youtube, Facebook } from "lucide-react"; @@ -15,12 +14,30 @@ export default function InventoryPage() { { name: "Contact", id: "/contact" } ]; - const themeProps = { - defaultButtonVariant: "hover-bubble", defaultTextAnimation: "reveal-blur", borderRadius: "rounded", contentWidth: "compact", sizing: "mediumLargeSizeMediumTitles", background: "noiseDiagonalGradient", cardStyle: "subtle-shadow", primaryButtonStyle: "shadow", secondaryButtonStyle: "solid", headingFontWeight: "normal" - }; + const products = [ + { id: "p1", brand: "Hyundai", name: "i10", price: "₹3,50,000", rating: 4, reviewCount: "150", imageSrc: "http://img.b2bpic.net/free-photo/young-person-using-sustainable-mobility_23-2149290909.jpg", imageAlt: "Hyundai i10 blue hatchback" }, + { id: "p2", brand: "Honda", name: "City", price: "₹7,20,000", rating: 5, reviewCount: "210", imageSrc: "http://img.b2bpic.net/free-photo/headlight-lamp-car_1339-8479.jpg", imageAlt: "Honda City grey sedan" }, + { id: "p3", brand: "Toyota", name: "Innova", price: "₹12,80,000", rating: 4, reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/happy-tourist-couple-sea_23-2148637298.jpg", imageAlt: "Toyota Innova white MPV" }, + { id: "p4", brand: "Mercedes-Benz", name: "C-Class", price: "₹28,00,000", rating: 5, reviewCount: "70", imageSrc: "http://img.b2bpic.net/free-photo/elegant-uber-driver-giving-taxi-ride_23-2149241752.jpg", imageAlt: "Mercedes-Benz C-Class black sedan" }, + { id: "p5", brand: "BMW", name: "3 Series", price: "₹32,50,000", rating: 5, reviewCount: "60", imageSrc: "http://img.b2bpic.net/free-photo/red-convertible-driving-city-road-dynamics-luxury-lifestyle_169016-72765.jpg", imageAlt: "BMW 3 Series white sports sedan" }, + { id: "p6", brand: "Audi", name: "Q5", price: "₹45,00,000", rating: 4, reviewCount: "40", imageSrc: "http://img.b2bpic.net/free-photo/road-trip-concept-with-young-couple_23-2148195697.jpg", imageAlt: "Audi Q5 grey SUV" }, + { id: "p7", brand: "Maruti", name: "Swift", price: "₹4,80,000", rating: 4, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/young-man-happy-family-buying-new-car_1303-24706.jpg", imageAlt: "Maruti Swift red hatchback" }, + { id: "p8", brand: "Mahindra", name: "Thar", price: "₹15,00,000", rating: 5, reviewCount: "80", imageSrc: "http://img.b2bpic.net/free-photo/travel-car-roof-with-traveling-supplies_1150-1845.jpg", imageAlt: "Mahindra Thar green SUV" } + ]; return ( - + -
+
-
- -
-
@@ -72,7 +72,6 @@ export default function InventoryPage() { { icon: Youtube, href: "https://youtube.com/malnadcarculture", ariaLabel: "YouTube" }, { icon: Facebook, href: "https://facebook.com/malnadcarculture", ariaLabel: "Facebook" } ]} - useInvertedBackground={false} />
-- 2.49.1