We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9da19e8 commit 25f7ed2Copy full SHA for 25f7ed2
apps/docs/app/[lang]/not-found.tsx
@@ -0,0 +1,23 @@
1
+import { DocsBody, DocsPage } from 'fumadocs-ui/page'
2
+
3
+export const metadata = {
4
+ title: 'Page Not Found',
5
+}
6
7
+export default function NotFound() {
8
+ return (
9
+ <DocsPage>
10
+ <DocsBody>
11
+ <div className='flex min-h-[60vh] flex-col items-center justify-center text-center'>
12
+ <h1 className='mb-4 bg-gradient-to-b from-[#8357FF] to-[#6F3DFA] bg-clip-text font-bold text-8xl text-transparent'>
13
+ 404
14
+ </h1>
15
+ <h2 className='mb-2 font-semibold text-2xl text-foreground'>Page Not Found</h2>
16
+ <p className='text-muted-foreground'>
17
+ The page you're looking for doesn't exist or has been moved.
18
+ </p>
19
+ </div>
20
+ </DocsBody>
21
+ </DocsPage>
22
+ )
23
0 commit comments