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

hello: {world}

time: {time} to home
to another ) }