feat: initial Funktechnik Schubert website

This commit is contained in:
Schubert Ferenc 2026-07-03 19:14:34 +02:00
commit 9a648e2ec8
35 changed files with 7521 additions and 0 deletions

26
components/Footer.tsx Normal file
View file

@ -0,0 +1,26 @@
import Link from "next/link";
export default function Footer() {
return (
<footer className="footer">
<div className="container footer-grid">
<div>
<h3>Funktechnik Schubert</h3>
<p>Service, Reparatur und technische Unterstützung für Funkgeräte und Kommunikationstechnik.</p>
</div>
<div>
<h3>Service</h3>
<p><Link href="/leistungen">Leistungen</Link></p>
<p><Link href="/funkgeraete-service">Funkgeräte-Service</Link></p>
<p><Link href="/reparatur">Reparaturannahme</Link></p>
</div>
<div>
<h3>Rechtliches</h3>
<p><Link href="/impressum">Impressum</Link></p>
<p><Link href="/datenschutz">Datenschutz</Link></p>
<p><Link href="/kontakt">Kontakt</Link></p>
</div>
</div>
</footer>
);
}