import Link from 'next/link'; import { Container } from '@/components/ui/Container'; import { Navigation } from './Navigation'; interface FooterProps { locale: string; siteName?: string; } export function Footer({ locale, siteName = 'KLZ Cables' }: FooterProps) { const currentYear = new Date().getFullYear(); // Quick links const quickLinks = [ { title: 'About Us', path: `/${locale}/about` }, { title: 'Blog', path: `/${locale}/blog` }, { title: 'Products', path: `/${locale}/products` }, { title: 'Contact', path: `/${locale}/contact` } ]; // Product categories const productCategories = [ { title: 'Medium Voltage Cables', path: `/${locale}/product-category/medium-voltage` }, { title: 'Low Voltage Cables', path: `/${locale}/product-category/low-voltage` }, { title: 'Cable Accessories', path: `/${locale}/product-category/accessories` }, { title: 'Special Solutions', path: `/${locale}/product-category/special` } ]; // Legal links const legalLinks = [ { title: 'Privacy Policy', path: `/${locale}/privacy` }, { title: 'Terms of Service', path: `/${locale}/terms` }, { title: 'Imprint', path: `/${locale}/imprint` } ]; return ( ); }