export default function Page(props) { return ( <>

404 page

{JSON.stringify(props)}

) } export const getStaticProps = () => { console.log('404 getStaticProps') return { props: { notFound: true, random: Math.random(), }, revalidate: 6000, } }