diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 570e249..b34be79 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "Home", - "href": "/" + "name": "Home", "href": "/" }, { - "name": "Shop", - "href": "/shop" + "name": "Shop", "href": "/shop" }, { - "name": "About", - "href": "/about" + "name": "About", "href": "/about" }, { - "name": "FAQ", - "href": "/faq" + "name": "FAQ", "href": "/faq" }, { - "name": "Contact", - "href": "/contact" + "name": "Contact", "href": "/contact" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Featured", - "href": "#featured" + "name": "Featured", "href": "#featured" } ]; @@ -43,10 +36,9 @@ export default function Layout() {
@@ -57,42 +49,28 @@ export default function Layout() { brand="Apex Athletics" columns={[ { - title: "Shop", - items: [ + title: "Shop", items: [ { - label: "Shorts", - href: "/shop", - }, + label: "Shorts", href: "/shop"}, { - label: "New Arrivals", - href: "/shop", - }, + label: "New Arrivals", href: "/shop"}, ], }, { - title: "Company", - items: [ + title: "Company", items: [ { - label: "About Us", - href: "/about", - }, + label: "About Us", href: "/about"}, { - label: "Contact", - href: "/contact", - }, + label: "Contact", href: "/contact"}, ], }, ]} copyright="© 2024 Apex Athletics. All rights reserved." links={[ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Service", - href: "#", - }, + label: "Terms of Service", href: "#"}, ]} />