diff --git a/apps/docs/app/[lang]/not-found.tsx b/apps/docs/app/[lang]/not-found.tsx new file mode 100644 index 0000000000..bc6170d033 --- /dev/null +++ b/apps/docs/app/[lang]/not-found.tsx @@ -0,0 +1,23 @@ +import { DocsBody, DocsPage } from 'fumadocs-ui/page' + +export const metadata = { + title: 'Page Not Found', +} + +export default function NotFound() { + return ( + + +
+

+ 404 +

+

Page Not Found

+

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

+
+
+
+ ) +}