import Link from 'next/link' export default function Page() { return (

hello world to /

) } Page.getInitialProps = async () => { return { static: false, } }