diff --git a/app/page.tsx b/app/page.tsx
index 5e59e81..b3e926e 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -17,7 +17,7 @@ export default function Home() {
-
+
>
)
}
diff --git a/components/footer.tsx b/components/footer.tsx
index 7caedce..1242ce7 100644
--- a/components/footer.tsx
+++ b/components/footer.tsx
@@ -16,12 +16,11 @@ const legalLinks = [
{ label: 'Datenschutz', href: '/datenschutz' },
]
-const socialLinks = [
- { label: 'Forgejo', href: 'https://kitux.de/forgejo/dschlueter/jamulix-homepage', icon: Github },
- { label: 'E-Mail', href: 'mailto:[Emailadresse]', icon: Mail },
-]
-
-export function Footer() {
+export function Footer({ email }: { email?: string }) {
+ const socialLinks = [
+ { label: 'Forgejo', href: 'https://kitux.de/forgejo/dschlueter/jamulix-homepage', icon: Github },
+ { label: 'E-Mail', href: `mailto:${email ?? '[Emailadresse]'}`, icon: Mail },
+ ]
const currentYear = new Date().getFullYear()
return (