import Link from 'next/link' export async function getStaticProps() { return { props: { world: 'world', time: new Date().getTime(), }, } } export default ({ world, time }) => ( <>

hello {world}

time: {time} to home
to something )