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: "085 - 1234 567", href: "tel:0851234567" }, ]; const companyInfo = [ { label: "KVK", value: "12345678" }, { label: "BTW", value: "NL123456789B01" }, { label: "IBAN", value: "NL00 INGB 0000 0000 00" }, ]; const locations = [ "Nunspeet", "Veghel", "Amsterdam", "Rotterdam", "Utrecht", ]; const proinnLinks = [ { label: "Projecten", href: "/projecten" }, { label: "Configurator", href: "/offerte" }, { label: "Over ons", href: "/over-ons" }, { label: "Vacatures", href: "/vacatures" }, { label: "Showrooms", href: "/showrooms" }, ]; const serviceLinks = [ { label: "Contact", href: "/contact" }, { label: "Kennisbank", href: "/kennisbank" }, { label: "Veelgestelde vragen", href: "/faq" }, { label: "Garantie", href: "/garantie" }, { label: "Onderhoud", href: "/onderhoud" }, ]; 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 ( ); }