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

This page could not be found | 404

{JSON.stringify(props)}

) } export const getStaticProps = ({ locale, locales, defaultLocale }) => { return { props: { locale, locales, defaultLocale, is404: true, }, } }