From f843ec26f0b33ffcf1d9a47c81384091969189d3 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 13 Jun 2026 20:49:15 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 570e249..17d54c8 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sat, 13 Jun 2026 20:49:18 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 57 ++++++++++++--------------------------- 1 file changed, 17 insertions(+), 40 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 17d54c8..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,11 +36,9 @@ export default function Layout() {
@@ -58,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: "#"}, ]} /> -- 2.49.1