import Link from "next/link"; import type { ReactNode } from "react"; function LegalLink({ href, children, external, }: { href: string; children: ReactNode; external?: boolean; }) { const className = "transition-colors duration-300 hover:text-gray-300"; if (external) { return ( {children} ); } return ( {children} ); } export function LegalFooter() { const year = new Date().getFullYear(); return ( ); }