26 lines
861 B
TypeScript
26 lines
861 B
TypeScript
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>
|
|
);
|
|
}
|