21 lines
766 B
TypeScript
21 lines
766 B
TypeScript
import Link from 'next/link';
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<div className="min-h-[60vh] flex items-center justify-center">
|
|
<div className="text-center px-4">
|
|
<h1 className="text-6xl font-bold text-secondary-900 mb-4">404</h1>
|
|
<h2 className="text-2xl font-bold text-secondary-700 mb-4">
|
|
ไม่พบหน้าที่คุณต้องการ
|
|
</h2>
|
|
<p className="text-secondary-600 mb-8">
|
|
หน้าที่คุณกำลังค้นหาไม่มีอยู่หรือถูกย้ายแล้ว
|
|
</p>
|
|
<Link href="/" className="btn-primary">
|
|
กลับหน้าแรก
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|