diff --git a/app/not-found.tsx b/app/not-found.tsx new file mode 100644 index 0000000..6e159af --- /dev/null +++ b/app/not-found.tsx @@ -0,0 +1,18 @@ +import Link from "next/link" + +export const metadata = { title: "Not Found" } + +export default function NotFound() { + return ( +
+
+

404

+

Page not found

+

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

+ + Go home + +
+
+ ) +}