From 79e23dab60e4726a95d435fcb34a13630e09f0fb Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 13 Jun 2026 16:11:06 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 4cbc33c..898c9ec 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -84,6 +84,10 @@ export default function Layout() { }, ]} copyright="© 2024 Edge Fitness. Faisalabad, Pakistan." + links={[ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" } + ]} /> -- 2.49.1 From ab729e98d4dfa609210688e7c52c2a6bdeb321a2 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 13 Jun 2026 16:11:09 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 55 +++++++++++++-------------------------- 1 file changed, 18 insertions(+), 37 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 898c9ec..afcec57 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": "Classes", - "href": "#classes" + "name": "Classes", "href": "#classes" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Why Choose", - "href": "#why-choose" + "name": "Why Choose", "href": "#why-choose" }, { - "name": "Gallery", - "href": "#gallery" + "name": "Gallery", "href": "#gallery" } ]; @@ -44,9 +37,7 @@ export default function Layout() {
@@ -55,39 +46,29 @@ export default function Layout() { -- 2.49.1