diff --git a/app/not-found.tsx b/app/not-found.tsx index b261e32..a949aca 100644 --- a/app/not-found.tsx +++ b/app/not-found.tsx @@ -1,20 +1,23 @@ +'use client'; import { Button } from "@/components/ui/button"; -import Link from "next/link"; -function NotFoundPage() { +export default function NotFoundPage() { return ( -
-
-

404

-

Uh-oh!

-

We can't find that page.

- - +
+
+

+ 404 +

+

+ Oops, the page you are looking for could not be found. +

+
); -} - -export default NotFoundPage; +} \ No newline at end of file