From 79e264bb477c40df80321b55c06eacd81d482d01 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 14:21:34 +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 0214ecb..868835b 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -39,6 +39,7 @@ export default function Layout() { Date: Mon, 15 Jun 2026 14:21:38 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 50 ++++++++++++--------------------------- 1 file changed, 15 insertions(+), 35 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 868835b..f749e48 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -8,28 +8,22 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "Über uns", - "href": "#about" + "name": "Über uns", "href": "#about" }, { - "name": "Veranstaltungen", - "href": "#events" + "name": "Veranstaltungen", "href": "#events" }, { - "name": "Gebetszeiten", - "href": "#prayer" + "name": "Gebetszeiten", "href": "#prayer" }, { - "name": "Galerie", - "href": "#gallery" + "name": "Galerie", "href": "#gallery" }, { - "name": "Kontakt", - "href": "#contact" + "name": "Kontakt", "href": "#contact" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" } ]; @@ -39,11 +33,9 @@ export default function Layout() {
@@ -54,38 +46,26 @@ export default function Layout() { brand="IHG Kiel" columns={[ { - title: "IHG Kiel", - items: [ + title: "IHG Kiel", items: [ { - label: "Über uns", - href: "#about", - }, + label: "Über uns", href: "#about"}, { - label: "Events", - href: "#events", - }, + label: "Events", href: "#events"}, ], }, { - title: "Rechtliches", - items: [ + title: "Rechtliches", items: [ { - label: "Impressum", - href: "#", - }, + label: "Impressum", href: "#"}, { - label: "Datenschutz", - href: "#", - }, + label: "Datenschutz", href: "#"}, ], }, ]} copyright="© 2025 IHG Kiel – Islamische Hochschulgruppe Kiel" links={[ { - label: "Startseite", - href: "#hero", - }, + label: "Startseite", href: "#hero"}, ]} /> -- 2.49.1