From 4509a9deea21faa97220eaa3cd67b3bed70f80c6 Mon Sep 17 00:00:00 2001 From: Krishna Ayyalasomayajula Date: Mon, 1 Jun 2026 19:45:38 -0500 Subject: [PATCH] feat: add 404 page --- app/not-found.tsx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 app/not-found.tsx 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 + +
+
+ ) +}