feature: pope prayer intention

This commit is contained in:
Benno Tielen 2025-02-02 10:30:47 +01:00
parent a9c451b005
commit ea81277e5c
4 changed files with 4 additions and 10 deletions

View file

@ -12,8 +12,8 @@ const months: Record<string, string> = {
"03": "März",
"04": "April",
"05": "Mai",
"06": "June",
"07": "July",
"06": "Juni",
"07": "Juli",
"08": "August",
"09": "September",
"10": "Oktober",

View file

@ -190,7 +190,7 @@ export default function RootLayout({
href: "/gruppe/eucharistische-anbetung"
},
{
title: "Gebetsanlieges des Papstes",
title: "Gebetsanliegen des Papstes",
description: "Vereint im Gebet mit dem Papst",
href: `/gebetsanliegen-des-papstes/${date.getFullYear()}/${(date.getUTCMonth() + 1).toString(10).padStart(2, '0')}`
},

View file

@ -80,12 +80,6 @@ export const Parish = (
<Title title={"Ansprechpersonen"} size={"md"} color={"contrast"} />
<ContactPersonList persons={contactPersons} />
<Section padding={"small"}>
{ announcement &&
<Button href={announcement} size={"md"}>Aktuelle Vermeldungen</Button>
}
</Section>
</Col>
</Row>
</Container>

View file

@ -91,7 +91,7 @@ export default buildConfig({
},
db: postgresAdapter({
idType: "uuid",
push: true,
push: false,
pool: {
connectionString: process.env.DATABASE_URI,
}