feat: update configuration, styles, and components for improved UI and functionality
This commit is contained in:
parent
a3294a0648
commit
1ce743e06a
8 changed files with 118 additions and 70 deletions
18
src/app/not-found.tsx
Normal file
18
src/app/not-found.tsx
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
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">
|
||||
<Image 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>
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue