From f708aa2a759e6e344e75972612fb0dccae547ead Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 22 Jun 2026 16:32:21 +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 71f4b69..c50d801 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Mon, 22 Jun 2026 16:32:24 +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 c50d801..7f6bfde 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": "Shop", - "href": "#shop" + "name": "Shop", "href": "#shop" }, { - "name": "Fishing Report", - "href": "#report" + "name": "Fishing Report", "href": "#report" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Arrivals", - "href": "#arrivals" + "name": "Arrivals", "href": "#arrivals" }, { - "name": "Brands", - "href": "#brands" + "name": "Brands", "href": "#brands" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,42 +49,28 @@ export default function Layout() { brand="Matos Marine" columns={[ { - title: "Store", - items: [ + title: "Store", items: [ { - label: "About Us", - href: "#", - }, + label: "About Us", href: "#"}, { - label: "Location", - href: "#", - }, + label: "Location", href: "#"}, ], }, { - title: "Shop", - items: [ + title: "Shop", items: [ { - label: "Browse", - href: "#shop", - }, + label: "Browse", href: "#shop"}, { - label: "Pickup Info", - href: "#pickup", - }, + label: "Pickup Info", href: "#pickup"}, ], }, ]} copyright="© 2024 Matos Marine Tackle Shop. All rights reserved." links={[ { - label: "Terms", - href: "#", - }, + label: "Terms", href: "#"}, { - label: "Privacy", - href: "#", - }, + label: "Privacy", href: "#"}, ]} /> -- 2.49.1