diff --git a/src/app/(public)/[...not-found]/page.tsx b/src/app/(public)/[...not-found]/page.tsx new file mode 100644 index 0000000..8b9a9ea --- /dev/null +++ b/src/app/(public)/[...not-found]/page.tsx @@ -0,0 +1,9 @@ +import NotFound from "../not-found"; + +export default function CatchAll() { + return ( +
+ +
+ ); +} diff --git a/src/app/(public)/not-found.tsx b/src/app/(public)/not-found.tsx new file mode 100644 index 0000000..42d05b4 --- /dev/null +++ b/src/app/(public)/not-found.tsx @@ -0,0 +1,10 @@ +export default function NotFound() { + return ( +
+

+ 404 +

+

Page doesn't exist :((

+
+ ); +}