import Link from 'next/link' export default function Footer() { return ( ) } function FooterLink({ href, children }: { href: string; children: React.ReactNode }) { return ( {children} ) }