imnya.ng/src/app/not-found.tsx

18 lines
719 B
TypeScript

import { Button } from "@/components/ui/button";
import Image from "next/image";
export default function NotFound() {
return (
<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">
<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>
<p>. </p>
<br/>
<a href="/"> Go Home</a>
</div>
)
}