diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx new file mode 100644 index 0000000..bdb5ac6 --- /dev/null +++ b/src/app/not-found.tsx @@ -0,0 +1,30 @@ +'use client' + +import { useRouter } from 'next/navigation' + +import { Button } from '@/components/ui/button' + +export default function NotFound() { + const router = useRouter() + + return ( +
+
+
+

+ 404 - Page Not Found +

+

+ The page you re looking for doesn t exist or has been moved. +

+ +
+
+
+ ) +}