summaryrefslogtreecommitdiff
path: root/src/components/FooterSection.tsx
diff options
context:
space:
mode:
authorLeo Goetz <dev@leogtz.de>2026-05-08 15:43:50 +0200
committerLeo Goetz <dev@leogtz.de>2026-05-08 15:43:50 +0200
commitb2bd3587bfd42ec8efdab12f090996f600720c0d (patch)
treefbb55b716b592032ebbdb5448bfba0b49a609d17 /src/components/FooterSection.tsx
inital commitHEADmaster
Diffstat (limited to 'src/components/FooterSection.tsx')
-rw-r--r--src/components/FooterSection.tsx17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/components/FooterSection.tsx b/src/components/FooterSection.tsx
new file mode 100644
index 0000000..f9b4d64
--- /dev/null
+++ b/src/components/FooterSection.tsx
@@ -0,0 +1,17 @@
+import Link from "next/link";
+
+export default function FooterSection() {
+ return (
+ <footer className="text-white text-center py-4 mt-10">
+ <div className="space-x-4">
+ <Link href="/impressum" className="hover:underline">
+ Impressum
+ </Link>
+ <Link href="/datenschutz" className="hover:underline">
+ Datenschutz
+ </Link>
+ </div>
+ <p className="mt-2 text-sm">© 2025 Leo Götz</p>
+ </footer>
+ );
+}