import Link from 'next/link'; import { Facebook, Instagram, Linkedin, Twitter, Youtube } from 'lucide-react'; import styles from './Footer.module.css'; export default function Footer() { const currentYear = new Date().getFullYear(); const footerLinks = { product: [ { label: 'Features', href: '#' }, { label: 'Pricing', href: '/pricing' }, { label: 'Documentation', href: '#' }, { label: 'API', href: '#' }, ], company: [ { label: 'About Us', href: '/about' }, { label: 'Blog', href: '/resources' }, { label: 'Careers', href: '/careers' }, { label: 'Contact', href: '/contact' }, ], resources: [ { label: 'Help Center', href: '/help' }, { label: 'Community', href: '/community' }, { label: 'Tutorials', href: '/tutorials' }, { label: 'Status', href: '/status' }, ], legal: [ { label: 'Privacy Policy', href: '/privacy' }, { label: 'Terms of Service', href: '/terms' }, { label: 'Cookie Policy', href: '/cookies' }, { label: 'GDPR', href: '/gdpr' }, ], }; const socialLinks = [ { icon: , href: 'https://twitter.com', label: 'Twitter' }, { icon: , href: 'https://facebook.com', label: 'Facebook' }, { icon: , href: 'https://instagram.com', label: 'Instagram' }, { icon: , href: 'https://linkedin.com', label: 'LinkedIn' }, { icon: , href: 'https://youtube.com', label: 'YouTube' }, ]; return ( ); }