18 lines
753 B
TypeScript
18 lines
753 B
TypeScript
import Link from 'next/link';
|
|
|
|
export default function Footer() {
|
|
return (
|
|
<footer
|
|
className="bg-white mt-auto py-10 px-6 md:px-12 lg:px-24 text-sm text-gray-600 border-t border-gray-200">
|
|
<div className="flex flex-col md:flex-row justify-between items-center gap-4">
|
|
<div>
|
|
<p>© {new Date().getFullYear()} Kanzlei Mustermann. Alle Rechte vorbehalten.</p>
|
|
</div>
|
|
<div className="space-x-4">
|
|
<Link href="/app/imprint/" className="hover:underline">Impressum</Link>
|
|
<Link href="/app/privacy/" className="hover:underline">Datenschutz</Link>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
} |