14 lines
420 B
TypeScript
14 lines
420 B
TypeScript
import { Link } from 'react-router-dom'
|
|
|
|
export default function NotFoundPage() {
|
|
return (
|
|
<div className="min-h-screen flex flex-col items-center justify-center">
|
|
<h1 className="font-serif text-4xl mb-4">404</h1>
|
|
<p className="text-white/60 mb-6">페이지를 찾을 수 없습니다.</p>
|
|
<Link to="/" className="text-accent hover:underline">
|
|
처음으로
|
|
</Link>
|
|
</div>
|
|
)
|
|
}
|