sourcebot/packages/web/src/app/[domain]/components/pageNotFound.tsx

9 lines
200 B
TypeScript
Raw Normal View History

2025-02-04 20:04:05 +00:00
import { NotFound } from "./notFound"
2025-01-07 18:27:42 +00:00
export const PageNotFound = () => {
return (
<div className="flex h-screen">
2025-02-04 20:04:05 +00:00
<NotFound message="Page not found" />
2025-01-07 18:27:42 +00:00
</div>
)
}