From 0b11302b0f968bf97ac5fca4007715a63b0586dd Mon Sep 17 00:00:00 2001 From: Waleed Latif Date: Thu, 18 Dec 2025 11:30:28 -0800 Subject: [PATCH 1/2] feat(docs): added 404 page for the docs --- apps/docs/app/[lang]/not-found.tsx | 19 +++++++++++++++++++ 1 file changed, 19 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..8fd4c6ba5e --- /dev/null +++ b/apps/docs/app/[lang]/not-found.tsx @@ -0,0 +1,19 @@ +import { DocsBody, DocsPage } from 'fumadocs-ui/page' + +export default function NotFound() { + return ( + + +
+

+ 404 +

+

Page Not Found

+

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

+
+
+
+ ) +} From 5d7a9b83468441bafe9f036c07837c84634e39cc Mon Sep 17 00:00:00 2001 From: Waleed Latif Date: Thu, 18 Dec 2025 11:36:18 -0800 Subject: [PATCH 2/2] added metadata --- apps/docs/app/[lang]/not-found.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/docs/app/[lang]/not-found.tsx b/apps/docs/app/[lang]/not-found.tsx index 8fd4c6ba5e..bc6170d033 100644 --- a/apps/docs/app/[lang]/not-found.tsx +++ b/apps/docs/app/[lang]/not-found.tsx @@ -1,5 +1,9 @@ import { DocsBody, DocsPage } from 'fumadocs-ui/page' +export const metadata = { + title: 'Page Not Found', +} + export default function NotFound() { return (