diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx new file mode 100644 index 0000000..a354950 --- /dev/null +++ b/src/app/not-found.tsx @@ -0,0 +1,19 @@ +import Container from "@/components/Container"; +import { headers } from "next/headers"; + +export default async function NotFound() { + const headersList = headers(); + const domain = headersList.get("host"); + return ( + +
+
+

404 Not Found

+

+ The page you requested does not exist. +

+
+
+
+ ); +}