From d8d045458ecf12c17114d30f9085714b31611726 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 8 Jun 2026 15:58:33 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 422a3de..7b55828 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -47,7 +47,8 @@ export default function Layout() { + navItems={navItems} + ctaButton={{ text: "Get Started", href: "#contact" }} />
-- 2.49.1 From fd643630a884db7e69f5cb2202e7de24a51e3c44 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 8 Jun 2026 15:58:43 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 79 ++++++++++++--------------------------- 1 file changed, 23 insertions(+), 56 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 7b55828..e431546 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -8,36 +8,28 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "Home", - "href": "#hero" + "name": "Home", "href": "#hero" }, { - "name": "Features", - "href": "#features" + "name": "Features", "href": "#features" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Pricing", - "href": "#pricing" + "name": "Pricing", "href": "#pricing" }, { - "name": "Team", - "href": "#team" + "name": "Team", "href": "#team" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "FAQ", - "href": "#faq" + "name": "FAQ", "href": "#faq" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" } ]; @@ -48,7 +40,7 @@ export default function Layout() { + ctaButton={{ text: "Get Started Now", href: "#pricing" }} />
@@ -58,67 +50,42 @@ export default function Layout() { brand="FitForge" columns={[ { - title: "Company", - items: [ + title: "Company", items: [ { - label: "About Us", - href: "#about", - }, + label: "About Us", href: "#about"}, { - label: "Our Team", - href: "#team", - }, + label: "Our Team", href: "#team"}, { - label: "Careers", - href: "#", - }, + label: "Careers", href: "#"}, ], }, { - title: "Programs", - items: [ + title: "Programs", items: [ { - label: "Personal Training", - href: "#features", - }, + label: "Personal Training", href: "#features"}, { - label: "Group Classes", - href: "#features", - }, + label: "Group Classes", href: "#features"}, { - label: "Nutrition", - href: "#features", - }, + label: "Nutrition", href: "#features"}, ], }, { - title: "Support", - items: [ + title: "Support", items: [ { - label: "FAQ", - href: "#faq", - }, + label: "FAQ", href: "#faq"}, { - label: "Contact Us", - href: "mailto:info@fitforge.com", - }, + label: "Contact Us", href: "mailto:info@fitforge.com"}, { - label: "Membership Portal", - href: "#", - }, + label: "Membership Portal", href: "#"}, ], }, ]} copyright="© 2024 FitForge. All rights reserved." links={[ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Service", - href: "#", - }, + label: "Terms of Service", href: "#"}, ]} /> -- 2.49.1