From 64071ac2912cb63f295cdb511e4cf928c1b36fb6 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 12 Jun 2026 22:06:35 +0000 Subject: [PATCH] Update src/app/inventory/page.tsx --- src/app/inventory/page.tsx | 189 ++++++------------------------------- 1 file changed, 29 insertions(+), 160 deletions(-) diff --git a/src/app/inventory/page.tsx b/src/app/inventory/page.tsx index 1d67771..b894189 100644 --- a/src/app/inventory/page.tsx +++ b/src/app/inventory/page.tsx @@ -27,25 +27,15 @@ export default function LandingPage() { {}} searchPlaceholder="Search by model or brand..." filters={[ { - label: "Brand", - options: [ - "All", - "Honda", - "TVS", - "Royal Enfield", - "Hero", - "Suzuki", - "Bajaj", - "Yamaha", - ], - selected: "All", - onChange: "() => {}", + label: "Brand", options: [ + "All", "Honda", "TVS", "Royal Enfield", "Hero", "Suzuki", "Bajaj", "Yamaha"], + selected: "All", onChange: () => {}, }, { - label: "Type", - options: [ - "All", - "Motorcycle", - "Scooter", - ], - selected: "All", - onChange: "() => {}", + label: "Type", options: [ + "All", "Motorcycle", "Scooter"], + selected: "All", onChange: () => {}, }, ]} emptyMessage="No matching models found. Try adjusting your search or filters." @@ -157,20 +90,11 @@ export default function LandingPage() { useInvertedBackground={true} faqs={[ { - id: "faq-1", - title: "How often is the inventory updated?", - content: "Our inventory is updated daily to reflect the latest stock availability. New models and variants are added as soon as they arrive at our showroom.", - }, + id: "faq-1", title: "How often is the inventory updated?", content: "Our inventory is updated daily to reflect the latest stock availability. New models and variants are added as soon as they arrive at our showroom."}, { - id: "faq-2", - title: "Can I test ride a model before purchasing?", - content: "Yes, test rides are available for most models. Please contact our sales team or visit the showroom to schedule your test ride.", - }, + id: "faq-2", title: "Can I test ride a model before purchasing?", content: "Yes, test rides are available for most models. Please contact our sales team or visit the showroom to schedule your test ride."}, { - id: "faq-3", - title: "What are the payment options available?", - content: "We offer various payment options including cash, online transfers, and flexible financing plans through our partner banks. Our team can guide you through the best option for you.", - }, + id: "faq-3", title: "What are the payment options available?", content: "We offer various payment options including cash, online transfers, and flexible financing plans through our partner banks. Our team can guide you through the best option for you."}, ]} imageSrc="http://img.b2bpic.net/free-photo/crazy-man-angry-expression_1194-4643.jpg" imageAlt="Person asking questions about bike inventory" @@ -190,68 +114,13 @@ export default function LandingPage() { socialLinks={[ { icon: Facebook, - href: "https://facebook.com/atozautomotives", - ariaLabel: "Facebook", - }, + href: "https://facebook.com/atozautomotives", ariaLabel: "Facebook"}, { icon: Instagram, - href: "https://instagram.com/atozautomotives", - ariaLabel: "Instagram", - }, + href: "https://instagram.com/atozautomotives", ariaLabel: "Instagram"}, { icon: Film, - href: "https://youtube.com/atozautomotives", - ariaLabel: "YouTube", - }, - ]} - columns={[ - { - title: "Company", - items: [ - { - label: "About Us", - href: "/about", - }, - { - label: "Brands", - href: "/brands", - }, - { - label: "Contact", - href: "/contact", - }, - ], - }, - { - title: "Services", - items: [ - { - label: "Financing Options", - href: "#", - }, - { - label: "Service & Maintenance", - href: "#", - }, - { - label: "Testimonials", - href: "#", - }, - ], - }, - { - title: "Legal", - items: [ - { - label: "Privacy Policy", - href: "#", - }, - { - label: "Terms of Service", - href: "#", - }, - ], - }, + href: "https://youtube.com/atozautomotives", ariaLabel: "YouTube"}, ]} /> -- 2.49.1