import Link from "next/link"; import { Mail, Phone, MapPin } from "lucide-react"; const NAV_LINKS = [ { href: "/", label: "Startseite" }, { href: "/über-uns", label: "Über Uns" }, { href: "/leistungen", label: "Leistungen" }, { href: "/studio", label: "Studio" }, { href: "/aktuelles", label: "Aktuelles" }, ] as const; export function Footer() { return ( ); }