diff --git a/apps/web/src/app/not-found.tsx b/apps/web/src/app/not-found.tsx new file mode 100644 index 000000000..dafb4205d --- /dev/null +++ b/apps/web/src/app/not-found.tsx @@ -0,0 +1,26 @@ +import Link from 'next/link'; + +export default function NotFound() { + return ( +
+

404

+

This page could not be found.

+
+ + Go Home + + + Read the Docs + +
+
+ ); +}