import Link from 'next/link'; import type { SiteConfig } from '@/lib/types'; export function Footer({ config }: { config: SiteConfig | null }) { const year = new Date().getFullYear(); return ( ); }