Update not-found.tsx

This commit is contained in:
암냥 2026-02-07 04:45:35 +09:00 committed by GitHub
commit f073dfb7d3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,7 +6,7 @@ export default function NotFound() {
<div className="flex flex-col items-center justify-center min-h-screen">
<figure>
<picture className="block bg-gray-100 rounded-xl aspect-1-1 overflow-hidden image-scale object-shadowed mb-8">
<Image src="https://api.imnya.ng/mitda/miku" width={200} height={200} alt="Not Found Image" />
<img src="https://api.imnya.ng/mitda/miku" width={200} height={200} alt="Not Found Image" />
</picture>
</figure>
<h1 className="text-4xl font-bold">404</h1>
@ -15,4 +15,4 @@ export default function NotFound() {
<a href="/"> Go Home</a>
</div>
)
}
}