'use client' import React from 'react' import { Link } from './Link' export const Footer = () => { const currentYear = new Date().getFullYear() const footerLinks = { 'About': [ { label: 'Mission', href: '/about/mission' }, { label: 'Team', href: '/about/team' }, { label: 'Contact', href: '/about/contact' }, ], 'Community': [ { label: 'Blog', href: '/blog' }, { label: 'Forum', href: '/forum' }, { label: 'Podcast', href: '/podcast' }, ], 'Resources': [ { label: 'Knowledge Base', href: '/resources' }, { label: 'Support', href: '/support' }, { label: 'FAQ', href: '/faq' }, ], 'Legal': [ { label: 'Privacy Policy', href: '/legal/privacy' }, { label: 'Terms of Service', href: '/legal/terms' }, { label: 'Code of Conduct', href: '/legal/conduct' }, ], } return ( ) }