project-nomad/admin/inertia/pages/errors/not_found.tsx
2025-06-29 15:51:08 -07:00

11 lines
215 B
TypeScript

export default function NotFound() {
return (
<>
<div className="container">
<div className="title">Page not found</div>
<span>This page does not exist.</span>
</div>
</>
)
}