33 lines
1.5 KiB
TypeScript
33 lines
1.5 KiB
TypeScript
import Link from 'next/link'
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<div className="min-h-[70vh] flex items-center justify-center bg-gray-50">
|
|
<div className="text-center px-4 max-w-lg">
|
|
<div className="text-8xl mb-6">🔍</div>
|
|
<h1 className="text-7xl font-bold text-gray-200 mb-4">404</h1>
|
|
<h2 className="text-2xl font-bold text-gray-800 mb-4 font-burmese">
|
|
စာမျက်နှာ မတွေ့ပါ
|
|
</h2>
|
|
<p className="text-gray-500 mb-8 font-burmese leading-relaxed">
|
|
သင်ရှာနေသော စာမျက်နှာကို မတွေ့ပါ။ ဖျက်သိမ်းသွားခြင်း သို့မဟုတ် URL မှားနေနိုင်သည်။
|
|
</p>
|
|
<div className="flex flex-col sm:flex-row gap-4 justify-center">
|
|
<Link
|
|
href="/"
|
|
className="inline-flex items-center justify-center px-8 py-3 bg-primary text-white rounded-full font-semibold hover:bg-primary-dark transition-all font-burmese"
|
|
>
|
|
← ပင်မစာမျက်နှာ
|
|
</Link>
|
|
<Link
|
|
href="/search"
|
|
className="inline-flex items-center justify-center px-8 py-3 bg-white text-gray-700 border border-gray-300 rounded-full font-semibold hover:bg-gray-50 transition-all font-burmese"
|
|
>
|
|
🔍 ရှာဖွေရန်
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|