add temporary 404 page

This commit is contained in:
Nathaniel Tampus
2023-03-06 10:56:24 +08:00
parent 72a80fe8bf
commit 167e1cbd9d

12
client/src/pages/404.tsx Normal file
View File

@@ -0,0 +1,12 @@
export default function NotFound() {}
// Temporary. Move to app/ directory when it's supported
export function getStaticProps() {
return {
redirect: {
destination: "/",
permanent: true
}
};
}