From d1087236c74549f50bec0201955508fd8a571a92 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 11:34:54 +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 e5b3497..1cb90c1 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sun, 21 Jun 2026 11:34:57 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 61 ++++++++++++--------------------------- 1 file changed, 18 insertions(+), 43 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 1cb90c1..54fa0e8 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": "#hero" + "name": "Home", "href": "#hero" }, { - "name": "Shop", - "href": "#products" + "name": "Shop", "href": "#products" }, { - "name": "Collections", - "href": "#collections" + "name": "Collections", "href": "#collections" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Lookbook", - "href": "#lookbook" + "name": "Lookbook", "href": "#lookbook" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Features", - "href": "#features" + "name": "Features", "href": "#features" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,46 +49,30 @@ export default function Layout() { brand="Seijin X" columns={[ { - title: "Support", - items: [ + title: "Support", items: [ { - label: "Shipping Info", - href: "#", - }, + label: "Shipping Info", href: "#"}, { - label: "Returns", - href: "#", - }, + label: "Returns", href: "#"}, ], }, { - title: "Brand", - items: [ + title: "Brand", items: [ { - label: "Lookbook", - href: "#", - }, + label: "Lookbook", href: "#"}, { - label: "Instagram", - href: "https://instagram.com", - }, + label: "Instagram", href: "https://instagram.com"}, { - label: "TikTok", - href: "https://tiktok.com", - }, + label: "TikTok", href: "https://tiktok.com"}, ], }, ]} copyright="© 2024 Seijin X. 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