10 lines
360 B
TypeScript
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>
|
|
);
|
|
}
|