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

hello {world}

time: {time} to another
to something
to normal
to dynamic
to another dynamic ) } export default Page