From dad02614cf1fa0931fcf221044a616a9eea13a20 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 20 Jun 2026 06:57:51 +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 e6adfed..16d6f65 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sat, 20 Jun 2026 06:57:54 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 80 +++++++++++---------------------------- 1 file changed, 23 insertions(+), 57 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 16d6f65..bfcb45a 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": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Programs", - "href": "#programs" + "name": "Programs", "href": "#programs" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" }, { - "name": "Faq", - "href": "#faq" + "name": "Faq", "href": "#faq" } ]; @@ -43,11 +36,9 @@ export default function Layout() {
@@ -58,67 +49,42 @@ export default function Layout() { brand="Daarul Multazam" columns={[ { - title: "Programs", - items: [ + title: "Programs", items: [ { - label: "Foundation", - href: "#", - }, + label: "Foundation", href: "#"}, { - label: "Advanced Tahfidz", - href: "#", - }, + label: "Advanced Tahfidz", href: "#"}, { - label: "Integrated Studies", - href: "#", - }, + label: "Integrated Studies", href: "#"}, ], }, { - title: "About Us", - items: [ + title: "About Us", items: [ { - label: "Our History", - href: "#", - }, + label: "Our History", href: "#"}, { - label: "Our Vision", - href: "#", - }, + label: "Our Vision", href: "#"}, { - label: "Leadership", - href: "#", - }, + label: "Leadership", href: "#"}, ], }, { - title: "Connect", - items: [ + title: "Connect", items: [ { - label: "Contact", - href: "#", - }, + label: "Contact", href: "#"}, { - label: "Enrollment", - href: "#", - }, + label: "Enrollment", href: "#"}, { - label: "FAQs", - href: "#", - }, + label: "FAQs", href: "#"}, ], }, ]} copyright="© 2024 Daarul Multazam. 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