35 lines
1.2 KiB
TypeScript
35 lines
1.2 KiB
TypeScript
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>
|
||
);
|
||
}
|