From 764b596fddfdf71cb1c29aa2d96ad61b62121a49 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 20 Jun 2026 21:20:16 +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 7d45a78..08b382c 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sat, 20 Jun 2026 21:20:19 +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 08b382c..2a2b1f7 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": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Expertise", - "href": "#features" + "name": "Expertise", "href": "#features" }, { - "name": "Team", - "href": "#team" + "name": "Team", "href": "#team" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Testimonial", - "href": "#testimonial" + "name": "Testimonial", "href": "#testimonial" }, { - "name": "Faq", - "href": "#faq" + "name": "Faq", "href": "#faq" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -57,54 +48,33 @@ export default function Layout() {