import Link from 'next/link'; import styles from './Footer.module.css'; export default function Footer() { const currentYear = new Date().getFullYear(); const footerLinks = { product: [ { label: 'Features', href: '/features' }, { label: 'Pricing', href: '/pricing' }, { label: 'Documentation', href: '/docs' }, { label: 'API', href: '/docs/api' }, ], company: [ { label: 'About Us', href: '/about' }, { label: 'Blog', href: '/blog' }, { 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 ( ); }