fix: add menu items
This commit is contained in:
parent
07e6b35916
commit
201ba0163f
1 changed files with 57 additions and 9 deletions
|
|
@ -14,6 +14,9 @@ export default function RootLayout({
|
|||
}: Readonly<{
|
||||
children: React.ReactNode
|
||||
}>) {
|
||||
|
||||
const date = new Date()
|
||||
|
||||
return (
|
||||
<html lang="de" className={defaultFont.className}>
|
||||
<body>
|
||||
|
|
@ -65,11 +68,6 @@ export default function RootLayout({
|
|||
description: "Gesprächskreis für Erwachsene ab 45 Jahren",
|
||||
href: "/gruppe/credo-agape"
|
||||
},
|
||||
{
|
||||
title: "Mädchengruppe",
|
||||
description: "Zusammen die Welt entdecken",
|
||||
href: "/gruppe/maedchen"
|
||||
},
|
||||
{
|
||||
title: "Alphakurs",
|
||||
description: "Freude am glauben entdecken",
|
||||
|
|
@ -77,6 +75,31 @@ export default function RootLayout({
|
|||
},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Kinder & Jugend",
|
||||
items: [
|
||||
{
|
||||
title: "Mädelsgruppe",
|
||||
description: "Zusammen die Welt entdecken",
|
||||
href: "/gruppe/maedchen"
|
||||
},
|
||||
{
|
||||
title: 'Jugendgruppe',
|
||||
description: "Spaß am Glauben in St. Christophorus",
|
||||
href: "/gruppe/jugendgruppe"
|
||||
},
|
||||
{
|
||||
title: 'Ministranten',
|
||||
description: "Am Altar Gottes dienen",
|
||||
href: "/gruppe/ministranten"
|
||||
},
|
||||
{
|
||||
title: "Unsere Kita's",
|
||||
description: "Geborgenheit und Glaube",
|
||||
href: "/gruppe/kitas"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Musik",
|
||||
items: [
|
||||
|
|
@ -85,6 +108,16 @@ export default function RootLayout({
|
|||
description: "Singen und mitgestalten",
|
||||
href: "/gruppe/chor-st-clara"
|
||||
},
|
||||
{
|
||||
title: "Kirchenchor Christophorus",
|
||||
description: "Freude am Singen",
|
||||
href: "/gruppe/chor-st-christophorus"
|
||||
},
|
||||
{
|
||||
title: "Little Richards",
|
||||
description: "Band von St. Richard",
|
||||
href: "/gruppe/little-richards"
|
||||
},
|
||||
{
|
||||
title: "Kindergruppe",
|
||||
description: "Jeden Freitag singen und spielen",
|
||||
|
|
@ -156,6 +189,11 @@ export default function RootLayout({
|
|||
description: "Stille Begegnung mit Gott",
|
||||
href: "/gruppe/eucharistische-anbetung"
|
||||
},
|
||||
{
|
||||
title: "Gebetsanlieges des Papstes",
|
||||
description: "Vereint im Gebet mit dem Papst",
|
||||
href: `/gebetsanliegen-des-papstes/${date.getFullYear()}/${(date.getUTCMonth() + 1).toString(10).padStart(2, '0')}`
|
||||
},
|
||||
{
|
||||
title: "Holy Hour",
|
||||
description: "Dank, Ehre und Freude",
|
||||
|
|
@ -167,7 +205,7 @@ export default function RootLayout({
|
|||
}
|
||||
},
|
||||
{
|
||||
text: 'Liebe leben',
|
||||
text: 'Nächstenliebe leben',
|
||||
megaMenu: {
|
||||
text: {
|
||||
quote: 'Die Liebe ist langmütig, die Liebe ist gütig.',
|
||||
|
|
@ -175,7 +213,7 @@ export default function RootLayout({
|
|||
},
|
||||
groups: [
|
||||
{
|
||||
title: "Ehrenamt",
|
||||
title: "Soziales Engagement",
|
||||
items: [
|
||||
{
|
||||
href: '/gruppe/waermestube',
|
||||
|
|
@ -192,10 +230,20 @@ export default function RootLayout({
|
|||
description: "Marktstand auf dem Kranoldplatz",
|
||||
href: "/gruppe/dicke-linda"
|
||||
},
|
||||
{
|
||||
title: "Forum Asyl",
|
||||
description: "Zuhören. Verstehen. Helfen.",
|
||||
href: "/gruppe/forum-asyl"
|
||||
},
|
||||
{
|
||||
title: 'Liturgischer Dienst',
|
||||
description: "Deine Talente für die Gemeinde",
|
||||
href: "/gruppe/liturgischer-dienst"
|
||||
},
|
||||
{
|
||||
href: '/gruppe/die-unterstuetzer',
|
||||
title: 'Mitwirken',
|
||||
description: 'Reinigung, liturgischer Dienst & Co.',
|
||||
title: 'Anpacken & gutes tun',
|
||||
description: 'Kinderbertreuung, Hilfe bei.., Kirchenreinigung',
|
||||
},
|
||||
]
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue