import Link from "next/link"; export const Links = () => { return ( <> ); }; const LinkWithAnimatedUnderline = ({ href, text, }: { href: string; text: string; }) => { const animatedUnderline = "md:block md:max-w-0 md:group-hover:max-w-full motion-safe:md:transition-all md:h-0.5 md:bg-blue motion-safe:md:duration-300"; return ( {text} ); };