import Link from "next/link"; import { Mail, Phone, Star, Facebook, Instagram, Linkedin, Youtube } from "lucide-react"; const contactInfo = [ { icon: Mail, text: "info@proinn.nl", href: "mailto:info@proinn.nl" }, { icon: Phone, text: "0165 311 490", href: "tel:0165311490" }, ]; const companyInfo = [ { label: "KVK", value: "85086991" }, { label: "BTW", value: "NL863503330.B01" }, ]; const proinnLinks = [ { label: "Producten", href: "/producten" }, { label: "Configurator", href: "/offerte" }, { label: "Over ons", href: "/over-ons" }, { label: "Contact", href: "/contact" }, ]; const serviceLinks = [ { label: "Stalen binnendeuren", href: "/producten#binnendeuren" }, { label: "Stalen buitendeuren", href: "/producten#buitendeuren" }, { label: "Stalen kantoorwanden", href: "/producten#kantoorwanden" }, { label: "Maatwerk", href: "/producten#maatwerk" }, ]; const socialLinks = [ { icon: Facebook, href: "#", label: "Facebook" }, { icon: Instagram, href: "#", label: "Instagram" }, { icon: Linkedin, href: "#", label: "LinkedIn" }, { icon: Youtube, href: "#", label: "YouTube" }, ]; export function Footer() { return ( ); }