From 8a044821a02e2d9ec17e845322c7cb7a0f7e93f8 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 6 May 2026 00:02:42 +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 737e403..e3166a5 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -41,6 +41,7 @@ export default function Layout() { Date: Wed, 6 May 2026 00:03:00 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 36 ++++++++++++------------------------ 1 file changed, 12 insertions(+), 24 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index e3166a5..1931229 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": "Products", - "href": "#products" + "name": "Products", "href": "#products" }, { - "name": "Pricing", - "href": "#pricing" + "name": "Pricing", "href": "#pricing" }, { - "name": "About Us", - "href": "#about" + "name": "About Us", "href": "#about" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" } ]; @@ -41,11 +34,9 @@ export default function Layout() {
@@ -56,16 +47,13 @@ export default function Layout() { socialLinks={[ { icon: Facebook, - href: "#", - }, + href: "#"}, { icon: Instagram, - href: "#", - }, + href: "#"}, { icon: Linkedin, - href: "#", - }, + href: "#"}, ]} /> -- 2.49.1