Tax Lawfirm Demo 1

This commit is contained in:
2025-07-01 01:31:16 +00:00
parent d60a5ecbb1
commit f14a2ac5ca
37 changed files with 8077 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
export default function Footer() {
return (
<footer className="bg-gray-900 text-white py-10 text-center text-sm">
<div>&copy; {new Date().getFullYear()} Steuerkanzlei Mustermann. Alle Rechte vorbehalten.</div>
<div className="mt-2">
<a href="#" className="underline mx-2">Impressum</a>|
<a href="#" className="underline mx-2">Datenschutz</a>
</div>
</footer>
)
}