mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-09 15:07:55 -05:00
24 lines
723 B
TypeScript
24 lines
723 B
TypeScript
import { DocsBody, DocsPage } from 'fumadocs-ui/page'
|
|
|
|
export const metadata = {
|
|
title: 'Page Not Found',
|
|
}
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<DocsPage>
|
|
<DocsBody>
|
|
<div className='flex min-h-[60vh] flex-col items-center justify-center text-center'>
|
|
<h1 className='mb-4 bg-gradient-to-b from-[#8357FF] to-[#6F3DFA] bg-clip-text font-bold text-8xl text-transparent'>
|
|
404
|
|
</h1>
|
|
<h2 className='mb-2 font-semibold text-2xl text-foreground'>Page Not Found</h2>
|
|
<p className='text-muted-foreground'>
|
|
The page you're looking for doesn't exist or has been moved.
|
|
</p>
|
|
</div>
|
|
</DocsBody>
|
|
</DocsPage>
|
|
)
|
|
}
|