Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/not-found.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ import Link from 'next/link';

export default function NotFound() {
return (
<main className="flex min-h-screen flex-col items-center justify-center bg-gray-50 px-4">
<main className="bg-background flex min-h-screen flex-col items-center justify-center px-4">
<h1 className="text-7xl font-extrabold text-gray-900">404</h1>
<p className="mt-4 text-lg text-gray-600">페이지를 찾을 수 없습니다.</p>

<Link
href="/"
className="mt-8 inline-flex items-center justify-center rounded-md bg-black px-6 py-3 text-sm font-medium text-white transition hover:bg-gray-800"
className="text-text-invert mt-8 inline-flex items-center justify-center rounded-md bg-black px-6 py-3 text-sm font-medium transition hover:bg-gray-800"
>
홈으로 돌아가기
</Link>
Expand Down