From b44071ec6f16330378e89f7726d7c7ec40641dac Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Thu, 18 Jun 2026 07:45:51 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 4697341..6359065 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -57,7 +57,7 @@ export default function Layout() { brand="Harmony Rabbit Farm" columns={[ { - title: "Resources", + header: "Resources", items: [ { label: "About", @@ -70,7 +70,7 @@ export default function Layout() { ], }, { - title: "Legal", + header: "Legal", items: [ { label: "Privacy Policy", From 2980c56b91bd6b31138d62e1012561a5ac9a6cb1 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 18 Jun 2026 07:45:54 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 43 +++++++++++---------------------------- 1 file changed, 12 insertions(+), 31 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 6359065..369bb1b 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": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Breeds", - "href": "#breeds" + "name": "Breeds", "href": "#breeds" }, { - "name": "Process", - "href": "#process" + "name": "Process", "href": "#process" }, { - "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" } ]; @@ -44,9 +37,7 @@ export default function Layout() {
@@ -57,29 +48,19 @@ export default function Layout() { brand="Harmony Rabbit Farm" columns={[ { - header: "Resources", items: [ { - label: "About", - href: "#about", - }, + label: "About", href: "#about"}, { - label: "Contact", - href: "#contact", - }, + label: "Contact", href: "#contact"}, ], }, { - header: "Legal", items: [ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Service", - href: "#", - }, + label: "Terms of Service", href: "#"}, ], }, ]}