From 9d97d52b3d9920138e45573bf62256e24283541a Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 6 Jun 2026 13:55: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 96a666f..67a7980 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sat, 6 Jun 2026 13:55:09 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 63 +++++++++++---------------------------- 1 file changed, 18 insertions(+), 45 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 67a7980..0ab8c0e 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": "Services", - "href": "#services" + "name": "Services", "href": "#services" }, { - "name": "Portfolio", - "href": "#portfolio" + "name": "Portfolio", "href": "#portfolio" }, { - "name": "Team", - "href": "#team" + "name": "Team", "href": "#team" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -60,49 +51,31 @@ export default function Layout() { { items: [ { - label: "Our Services", - href: "#services", - }, + label: "Our Services", href: "#services"}, { - label: "Portfolio", - href: "#portfolio", - }, + label: "Portfolio", href: "#portfolio"}, { - label: "Case Studies", - href: "#portfolio", - }, + label: "Case Studies", href: "#portfolio"}, ], }, { items: [ { - label: "About Us", - href: "#about", - }, + label: "About Us", href: "#about"}, { - label: "Our Team", - href: "#team", - }, + label: "Our Team", href: "#team"}, { - label: "Contact", - href: "#contact", - }, + label: "Contact", href: "#contact"}, ], }, { items: [ { - label: "Twitter", - href: "https://twitter.com", - }, + label: "Twitter", href: "https://twitter.com"}, { - label: "Instagram", - href: "https://instagram.com", - }, + label: "Instagram", href: "https://instagram.com"}, { - label: "LinkedIn", - href: "https://linkedin.com", - }, + label: "LinkedIn", href: "https://linkedin.com"}, ], }, ]} -- 2.49.1