mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-13 04:45:19 +00:00
18 lines
568 B
TypeScript
18 lines
568 B
TypeScript
|
|
import { Separator } from "@/components/ui/separator"
|
||
|
|
|
||
|
|
export const PageNotFound = () => {
|
||
|
|
return (
|
||
|
|
<div className="flex h-screen">
|
||
|
|
<div className="m-auto">
|
||
|
|
<div className="flex flex-row items-center gap-2">
|
||
|
|
<h1 className="text-xl">404</h1>
|
||
|
|
<Separator
|
||
|
|
orientation="vertical"
|
||
|
|
className="h-5"
|
||
|
|
/>
|
||
|
|
<p className="text-sm">Page not found</p>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
}
|