From 25f7ed20f6bc3f3bc92679040c6ee41562667df7 Mon Sep 17 00:00:00 2001 From: Waleed Date: Thu, 18 Dec 2025 11:46:42 -0800 Subject: [PATCH] feat(docs): added 404 page for the docs (#2450) * feat(docs): added 404 page for the docs * added metadata --- apps/docs/app/[lang]/not-found.tsx | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 apps/docs/app/[lang]/not-found.tsx 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. +

+
+
+
+ ) +}