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 + +
+
+ ); +}