import NextLink, { LinkProps as NextLinkProps } from 'next/link' const Link: React.FC< NextLinkProps & { children?: React.ReactNode } > = ({ href, children, ...props }) => { return ( {children} ) } export default Link