import Link from 'next/link' export const config = { experimentalPrerender: true } const Page = ({ world }) => { return ( <>

hello {world}

to another
to something
to normal
to dynamic
to another dynamic ) } Page.getInitialProps = () => ({ world: 'world' }) export default Page