import { FC } from 'react' import NextLink from 'next/link' interface LinkProps { page: string className: string } const Link: FC = (props) => ( {props.children} ) export default Link