sourcebot/packages/web/src/app/components/pageNotFound.tsx

18 lines
568 B
TypeScript
Raw Normal View History

2025-01-07 18:27:42 +00:00
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>
)
}