From 8f6f333744e5a548024e3110ae23fdc3335ec6ee Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 21:45:46 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 6518e43..02056d5 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -91,7 +91,6 @@ export default function Layout() { }, ]} imageSrc="http://img.b2bpic.net/free-photo/business-branding-label-chart-graphic_53876-133806.jpg" - imageAlt="Business branding label chart graphic" /> -- 2.49.1 From 99ed4ebde339a7b32b165066396f4136b66dd308 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 14 Jun 2026 21:45:49 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 51 ++++++++++++--------------------------- 1 file changed, 15 insertions(+), 36 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 02056d5..19fbc45 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": "How It Works", - "href": "#how-it-works" + "name": "How It Works", "href": "#how-it-works" }, { - "name": "Features", - "href": "#features" + "name": "Features", "href": "#features" }, { - "name": "Events", - "href": "#events" + "name": "Events", "href": "#events" }, { - "name": "Pricing", - "href": "#pricing" + "name": "Pricing", "href": "#pricing" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" } ]; @@ -44,9 +37,7 @@ export default function Layout() {
@@ -57,38 +48,26 @@ export default function Layout() { brand="London Business Nexus" columns={[ { - title: "Platform", - items: [ + title: "Platform", items: [ { - label: "How It Works", - href: "#how-it-works", - }, + label: "How It Works", href: "#how-it-works"}, { - label: "Features", - href: "#features", - }, + label: "Features", href: "#features"}, ], }, { - title: "Company", - items: [ + title: "Company", items: [ { - label: "About Us", - href: "#about", - }, + label: "About Us", href: "#about"}, { - label: "Terms", - href: "#terms", - }, + label: "Terms", href: "#terms"}, ], }, ]} copyright="© 2026 London Business Nexus. All rights reserved." links={[ { - label: "Privacy Policy", - href: "#privacy", - }, + label: "Privacy Policy", href: "#privacy"}, ]} imageSrc="http://img.b2bpic.net/free-photo/business-branding-label-chart-graphic_53876-133806.jpg" /> -- 2.49.1