simple-kiosk/src/client/pages/NotFound.tsx
2024-05-03 01:19:24 +09:00

10 lines
360 B
TypeScript

export default function NotFound() {
return (
<div className="flex items-center justify-center h-full">
<div>
<h1 className="scroll-m-20 text-4xl font-extrabold tracking-tight lg:text-5xl">404 Not Found</h1>
<p className="text-xl text-muted-foreground"> .</p>
</div>
</div>
);
}