From 6f44d9d1dc26faac2994a898053e202006b51b81 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 01:07:39 +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 4337a0b..3201560 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Mon, 15 Jun 2026 01:07:42 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 72 ++++++++++++--------------------------- 1 file changed, 21 insertions(+), 51 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 3201560..5f159cf 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": "Menu", - "href": "#menu" + "name": "Menu", "href": "#menu" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Features", - "href": "#features" + "name": "Features", "href": "#features" }, { - "name": "Faq", - "href": "#faq" + "name": "Faq", "href": "#faq" }, { - "name": "Social", - "href": "#social" + "name": "Social", "href": "#social" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -57,54 +48,33 @@ export default function Layout() {