summaryrefslogtreecommitdiff
path: root/src/components/FooterSection.tsx
diff options
context:
space:
mode:
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>
+ );
+}