import { useMemo } from "react"; export function Footer() { const year = useMemo(() => new Date().getFullYear(), []); return ( ); }