From 3e887091eea264ccebcaf3b73a5b21de6258cf80 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 14:24:57 +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 df3bcef..73d188c 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Mon, 15 Jun 2026 14:25:00 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 57 ++++++++++++--------------------------- 1 file changed, 17 insertions(+), 40 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 73d188c..1ee9f3c 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": "/" + "name": "Home", "href": "/" }, { - "name": "Federation", - "href": "/federation" + "name": "Federation", "href": "/federation" }, { - "name": "Events", - "href": "/events" + "name": "Events", "href": "/events" }, { - "name": "Media", - "href": "/media" + "name": "Media", "href": "/media" }, { - "name": "Shop", - "href": "/shop" + "name": "Shop", "href": "/shop" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "About Summary", - "href": "#about-summary" + "name": "About Summary", "href": "#about-summary" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,42 +49,28 @@ export default function Layout() { brand="Asad Atlas Federation" columns={[ { - title: "Federation", - items: [ + title: "Federation", items: [ { - label: "About Us", - href: "/federation", - }, + label: "About Us", href: "/federation"}, { - label: "Grand Master", - href: "/federation#master", - }, + label: "Grand Master", href: "/federation#master"}, ], }, { - title: "Programs", - items: [ + title: "Programs", items: [ { - label: "Grading", - href: "/events", - }, + label: "Grading", href: "/events"}, { - label: "Training Camps", - href: "/events", - }, + label: "Training Camps", href: "/events"}, ], }, ]} copyright="© 2024 Asad Atlas Martial Arts Federation. All rights reserved." links={[ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Service", - href: "#", - }, + label: "Terms of Service", href: "#"}, ]} imageSrc="https://storage.googleapis.com/webild/users/user_3Eqw1m0jQl7pXZjQynWCRXUZppF/uploaded-1781533449960-l5x5hmfh.jpg" /> -- 2.49.1