blob: f9b4d64ebe31302f72e2bed7454d2d22d00b33f1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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>
);
}
|