From da47c03c18b4019aecbad6676c43ea339fc302dc Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 22:09:35 +0000 Subject: [PATCH] Update src/app/inventory/page.tsx --- src/app/inventory/page.tsx | 43 ++++++++++++-------------------------- 1 file changed, 13 insertions(+), 30 deletions(-) diff --git a/src/app/inventory/page.tsx b/src/app/inventory/page.tsx index abdce25..755e228 100644 --- a/src/app/inventory/page.tsx +++ b/src/app/inventory/page.tsx @@ -19,24 +19,21 @@ export default function InventoryPage() { const footerColumns = [ { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "How It Works", href: "/how-it-works" }, { label: "Contact", href: "/contact" }, ], }, { - title: "Browse", - items: [ + title: "Browse", items: [ { label: "Inventory", href: "/inventory" }, { label: "Mail Route Vehicles", href: "/mail-route-vehicles" }, { label: "FAQ", href: "#faq" }, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Financing Terms", href: "#" }, @@ -59,7 +56,8 @@ export default function InventoryPage() { > ); -} \ No newline at end of file +}