From 87ac7e2dac66e40647d0cfb56d3cc599034eafc7 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Fri, 19 Jun 2026 18:28:53 +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 f0a1ba5..e422248 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Fri, 19 Jun 2026 18:28:56 +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 e422248..b2c3478 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": "Guides", - "href": "#guides" + "name": "Guides", "href": "#guides" }, { - "name": "Projects", - "href": "#projects" + "name": "Projects", "href": "#projects" }, { - "name": "Pricing", - "href": "#pricing" + "name": "Pricing", "href": "#pricing" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Faq", - "href": "#faq" + "name": "Faq", "href": "#faq" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -59,42 +50,28 @@ export default function Layout() { brand="CrochetBuddy" columns={[ { - title: "Company", - items: [ + title: "Company", items: [ { - label: "About", - href: "#", - }, + label: "About", href: "#"}, { - label: "Careers", - href: "#", - }, + label: "Careers", href: "#"}, ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { - label: "Guides", - href: "#guides", - }, + label: "Guides", href: "#guides"}, { - label: "Projects", - href: "#projects", - }, + label: "Projects", href: "#projects"}, ], }, ]} copyright="© 2024 CrochetBuddy. 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