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

hello {world}

time: {time} to home
to something )