import Link from 'next/link' export async function getStaticProps() { // throw new Error('oops from getStaticProps') return { props: { world: 'world', time: new Date().getTime() }, } } const Page = ({ world, time }) => { return ( <> {/*
idk
*/}

hello {world}

time: {time} to non-json
to another
to something
to normal
to dynamic to broken to broken at first
to another dynamic to catchall
to nested index
to rewritten static path page
to optional catchall root to optional catchall page /value
to dynamic [first] page to dynamic [second] page
to catchall-explicit [first]/[second] page to catchall-explicit [third]/[fourth] page ) } export default Page