diff --git a/app/not-found.tsx b/app/not-found.tsx new file mode 100644 index 0000000..bc47f23 --- /dev/null +++ b/app/not-found.tsx @@ -0,0 +1,20 @@ +import { Button } from "@/components/ui/button"; +import Link from "next/link"; + +function NotFoundPage() { + return ( +
+
+

404

+

Uh-oh!

+

We can't find that page.

+ + +
+
+ ); +} + +export default NotFoundPage;