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

404 - Page Not Found

+

+ The page you're looking for doesn't exist. +

+ + Return Home + +
+ ) +}