From ba37db3e7e7d7aaf424ad0ebee5243f01eb3665a Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 17 Jun 2026 12:25:27 +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 3a92c7b..41878a5 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Wed, 17 Jun 2026 12:25:30 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 68 ++++++++++++--------------------------- 1 file changed, 20 insertions(+), 48 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 41878a5..0bf83c2 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": "Products", - "href": "#products" + "name": "Products", "href": "#products" }, { - "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": "Features", - "href": "#features" + "name": "Features", "href": "#features" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,55 +49,36 @@ export default function Layout() { brand="ShopStore" columns={[ { - title: "Products", - items: [ + title: "Products", items: [ { - label: "All", - href: "#", - }, + label: "All", href: "#"}, { - label: "New", - href: "#", - }, + label: "New", href: "#"}, ], }, { - title: "Support", - items: [ + title: "Support", items: [ { - label: "Help Center", - href: "#", - }, + label: "Help Center", href: "#"}, { - label: "Returns", - href: "#", - }, + label: "Returns", href: "#"}, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { - label: "Privacy", - href: "#", - }, + label: "Privacy", href: "#"}, { - label: "Terms", - href: "#", - }, + label: "Terms", href: "#"}, ], }, ]} copyright="© 2024 ShopStore Inc." links={[ { - label: "Twitter", - href: "#", - }, + label: "Twitter", href: "#"}, { - label: "Instagram", - href: "#", - }, + label: "Instagram", href: "#"}, ]} />