From e0b1aa98e00966f1e63fbbfca9941b6531e92bdc Mon Sep 17 00:00:00 2001 From: Milo Schwartz Date: Tue, 24 Dec 2024 15:43:48 -0500 Subject: [PATCH] add custom 404 page --- src/app/not-found.tsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/app/not-found.tsx diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx new file mode 100644 index 00000000..eb0aea84 --- /dev/null +++ b/src/app/not-found.tsx @@ -0,0 +1,15 @@ +import Link from "next/link"; + +export default async function NotFound() { + return ( +
+

404

+

+ Page Not Found +

+

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

+
+ ); +}