import NextLink from "next/link"; const Link = ({ to, name }: { to: string; name: string }) => { return ( {name} ); }; export default Link;