diff --git a/src/app/(docs)/not-found.tsx b/src/app/(docs)/not-found.tsx deleted file mode 100644 index e690aec..0000000 --- a/src/app/(docs)/not-found.tsx +++ /dev/null @@ -1,28 +0,0 @@ -import { buttonVariants } from "fumadocs-ui/components/api"; -import Link from "next/link"; - -export default function NotFound() { - return ( -
-
-
-

- 404 -

-

- Oops! You've wandered off the Zen path. Let's guide you - back to tranquility. -

-
- - Return to Docs - -
-
- ); -} diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx new file mode 100644 index 0000000..e4a5684 --- /dev/null +++ b/src/app/not-found.tsx @@ -0,0 +1,45 @@ +import { buttonVariants } from "fumadocs-ui/components/api"; +import Image from "next/image"; +import Link from "next/link"; +import type { Metadata } from "next"; + +export const metadata: Metadata = { + title: "404 | Page Not Found", +}; + +export default function NotFound() { + return ( +
+ 404 +
+
+

+ 404 +

+

+ Page not found +

+
+
+

+ Oops! You've wandered off the Zen path. Let's guide you back + to tranquility. +

+ + Return to Docs + +
+
+ ); +}