Files
burmddit/frontend/app/not-found.tsx
Min Zeya Phyo 964afce761 UI updates
2026-02-26 15:07:05 +06:30

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>
)
}