Updated code

This commit is contained in:
2025-06-26 23:40:36 +02:00
parent 50be52f08a
commit 14f275f2b8
3 changed files with 5 additions and 13 deletions

View File

@@ -1,3 +1,5 @@
import Link from "next/link"
export default function NotFound() {
return (
<div className="flex min-h-screen items-center justify-center">
@@ -9,12 +11,12 @@ export default function NotFound() {
<p className="mt-2 text-gray-600 dark:text-gray-400">
The link you're looking for doesn't exist or has expired.
</p>
<a
<Link
href="/"
className="mt-6 inline-block rounded-lg bg-blue-600 px-6 py-3 text-white hover:bg-blue-700 transition-colors"
>
Go Home
</a>
</Link>
</div>
</div>
)