Merge version_1_1781533237820 into main #1

Merged
bender merged 2 commits from version_1_1781533237820 into main 2026-06-15 14:21:41 +00:00

View File

@@ -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,10 +33,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="IHG Kiel"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=kr8cyp"
ctaButton={{
text: "Werde Teil",
href: "#contact",
}}
text: "Werde Teil", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -53,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"},
]}
/>
</SectionErrorBoundary>