diff --git a/client/src/pages/404.tsx b/client/src/pages/404.tsx new file mode 100644 index 0000000..3f8136e --- /dev/null +++ b/client/src/pages/404.tsx @@ -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 + } + }; +}