import Link from 'next/link' // eslint-disable-next-line camelcase export async function getServerSideProps() { return { props: { world: 'world', time: new Date().getTime(), }, } } const Page = ({ world, time }) => { return ( <>

hello {world}

time: {time} to another
to something
to normal
to dynamic to broken
to another dynamic to something?another=thing ) } export default Page