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 +}