`backend` 옆에 `front` 가 있을 이유가 없었다. negosium 의 negodata/front 를 그대로 베꼈고 그게 왜 front 인지는 따져보지 않았다 — 근거 없이 들여온 이름이라 바로잡는다. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_019uYhHQdssRubirPirrdJJC
17 lines
590 B
TypeScript
17 lines
590 B
TypeScript
import {Link} from 'react-router';
|
|
|
|
export function NotFoundPage() {
|
|
return (
|
|
<div className="flex min-h-screen flex-col items-center justify-center gap-3 bg-muted/30 px-4 text-center">
|
|
<p className="font-mono text-xs text-muted-foreground">404</p>
|
|
<h1 className="text-lg font-semibold">없는 화면입니다</h1>
|
|
<Link
|
|
to="/builder"
|
|
className="inline-flex h-9 items-center rounded-md bg-primary px-4 text-sm font-medium text-primary-foreground transition-colors hover:bg-primary/90"
|
|
>
|
|
빌더로 이동
|
|
</Link>
|
|
</div>
|
|
);
|
|
}
|