From 348feb05a5bed6785258998f8e2724d12a29d0a2 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 16 Jun 2026 15:37:29 +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 580bffc..ea0e2c6 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Tue, 16 Jun 2026 15:37:33 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 106 ++++++++++++++------------------------ 1 file changed, 39 insertions(+), 67 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index ea0e2c6..f2cd517 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -8,32 +8,22 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "Home", - "href": "/" + "name": "Home", "href": "/" }, { - "name": "About Us", - "href": "/about" + "name": "About Us", "href": "/about" }, { - "name": "Products", - "href": "/products" + "name": "Products", "href": "/products" }, { - "name": "Industries", - "href": "/industries" + "name": "Industries", "href": "/industries" }, { - "name": "Projects", - "href": "/projects" + "name": "Projects", "href": "/projects" }, { - "name": "Contact Us", - "href": "/contact" - }, - { - "name": "Hero", - "href": "#hero" + "name": "Contact Us", "href": "/contact" } ]; @@ -42,67 +32,49 @@ export default function Layout() { + logo="Ghani Elevators" + logoImageSrc="http://img.b2bpic.net/free-vector/monogram-logo-design-template_23-2151214057.jpg" + ctaButton={{ + text: "Get in Touch", href: "/contact"}} + navItems={navItems} />
+ ]} + /> ); -- 2.49.1