From 869ec1e6e9c9f2ffa13e3aba19aad56b30824fa8 Mon Sep 17 00:00:00 2001 From: ZGaetano Date: Fri, 1 May 2026 14:20:37 -0400 Subject: [PATCH] polish: add branded 404 page --- src/app/not-found.tsx | 54 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 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 0000000..c399adc --- /dev/null +++ b/src/app/not-found.tsx @@ -0,0 +1,54 @@ +import Link from "next/link"; +import Image from "next/image"; + +export const metadata = { + title: "Page Not Found | Wild Dragon", + description: "The page you're looking for doesn't exist.", + robots: { index: false, follow: false }, +}; + +export default function NotFound() { + return ( +
+ + Wild Dragon + + Wild Dragon + + + +

+ 404 +

+ +

+ Page not found. +

+ +

+ The page you're looking for doesn't exist or has been moved. +

+ +
+ + Back to Home + + + View Projects + +
+
+ ); +}