import { default as NextLink } from 'next/link' interface LinkProps { href: string className?: string target?: string rel?: string children: React.ReactNode } export default function Link(props: LinkProps) { return ( {props.children} ) }