From 70fa6165c4c6d7da43806577fb3a290824f04b41 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Thu, 2 Jul 2026 15:53:05 +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 5d89bed..f13635f 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -92,6 +92,7 @@ export default function Layout() { }, ]} copyright="2026 Speak Hub Global. All rights reserved." + links={[]} /> -- 2.49.1 From 9626bf1c705d6922d5a43df78406fc0bd6124a1a Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 2 Jul 2026 15:53:08 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 100 +++++++++++--------------------------- 1 file changed, 29 insertions(+), 71 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index f13635f..2c80914 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,93 +7,51 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "#hero" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Placement", - "href": "#placement" - }, - { - "name": "Demo", - "href": "#demo" - }, - { - "name": "Schedule", - "href": "#schedule" - }, - { - "name": "Register", - "href": "#register" - }, - { - "name": "Contact", - "href": "#contact" - } -]; + { name: "Home", href: "#hero" }, + { name: "About", href: "#about" }, + { name: "Features", href: "#features" }, + { name: "Placement", href: "#placement" }, + { name: "Demo", href: "#demo" }, + { name: "Schedule", href: "#schedule" }, + { name: "Register", href: "#register" }, + { name: "Contact", href: "#contact" } + ]; return ( + logo="Speak Hub Global" + ctaButton={{ + text: "Login", href: "#login"}} + navItems={navItems} + />
+ ]} + links={[]} + copyright="2026 Speak Hub Global. All rights reserved." + />
); -- 2.49.1