funktechnik-schubert-website/components/Footer.tsx
2026-07-03 22:59:08 +02:00

35 lines
1.2 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Image from "next/image";
import Link from "next/link";
import { appVersion } from "@/lib/runtime/version";
export default function Footer() {
return (
<footer className="footer">
<div className="container footer-grid">
<div>
<Image
src="/funktechnik_schubert_logo.jpg"
alt="Funktechnik Schubert"
width={1672}
height={941}
className="footer-logo"
/>
<p>Funktechnik Schubert Service und technische Unterstützung für Funkgeräte, Messtechnik und Kommunikationstechnik.</p>
<p className="copyright">© Funktechnik Schubert · v{appVersion}</p>
</div>
<div>
<h3>Website</h3>
<p><Link href="/leistungen">Leistungen</Link></p>
<p><Link href="/funkgeraete-service">Funkgeräte-Service</Link></p>
<p><Link href="/reparatur">Reparatur</Link></p>
<p><Link href="/kontakt">Kontakt</Link></p>
</div>
<div>
<h3>Rechtliches</h3>
<p><Link href="/impressum">Impressum</Link></p>
<p><Link href="/datenschutz">Datenschutz</Link></p>
</div>
</div>
</footer>
);
}