From 9404f40b404b59c4427ffe5f038a0cb841547bdd Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Thu, 18 Jun 2026 07:42:02 +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 334f648..4f5a5cb 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Thu, 18 Jun 2026 07:42:05 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 60 ++++++++++++--------------------------- 1 file changed, 18 insertions(+), 42 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 4f5a5cb..bda5c78 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": "About", - "href": "/about" + "name": "About", "href": "/about" }, { - "name": "Services", - "href": "/services" + "name": "Services", "href": "/services" }, { - "name": "Projects", - "href": "/projects" + "name": "Projects", "href": "/projects" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Services Grid", - "href": "#services-grid" + "name": "Services Grid", "href": "#services-grid" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -57,42 +48,27 @@ export default function Layout() {