Files
mygit/apps/admin/src/not-found.tsx
T
DuckQ1u 93d1b7c3d3
Copilot Setup Steps / copilot-setup-steps (push) Has been cancelled
first commit
2026-04-22 19:51:20 +07:00

12 lines
415 B
TypeScript

export function NotFound() {
return (
<div className="flex h-full items-center justify-center">
<div className="flex items-center gap-3">
<h1 className="text-2xl font-bold">404</h1>
<span className="text-grey-500" aria-hidden="true">|</span>
<h2 className="text-lg text-grey-700">Page not found</h2>
</div>
</div>
);
}