import Link from 'next/link'; import Image from 'next/image'; export default function Footer() { const currentYear = new Date().getFullYear(); const footerSections = [ { title: 'Product', links: [ { label: 'Features', href: '/features' }, { label: 'Pricing', href: '/pricing' }, { label: 'Documentation', href: '/docs' }, { label: 'About', href: '/about' }, ], }, { title: 'Resources', links: [ { label: 'Getting Started', href: '/docs/installation' }, { label: 'API Reference', href: '/docs/api' }, { label: 'Community', href: '#' }, ], }, { title: 'Support', links: [ { label: 'Contact', href: 'mailto:support@dashcaddy.net' }, { label: 'Docs', href: '/docs' }, { label: 'Privacy Policy', href: '#' }, { label: 'Terms of Service', href: '#' }, ], }, ]; const socialLinks = [ { icon: ( ), label: 'Contact', href: 'mailto:support@dashcaddy.net', }, ]; return ( ); }