import Link from 'next/link' function aLink(props) { return (

A Link page!

Go to /
) } aLink.getInitialProps = () => ({}) export default aLink