Files
property-management-network/app/not-found.tsx
T

17 lines
525 B
TypeScript
Raw Normal View History

import Link from "next/link"
export default function NotFound() {
return (
<div className="flex min-h-screen flex-col items-center justify-center bg-[#09090b] text-white">
<h1 className="text-6xl font-bold text-indigo-500">404</h1>
<p className="mt-4 text-xl text-white/60">Page not found</p>
<Link
href="/"
className="mt-8 rounded-lg bg-indigo-600 px-6 py-3 text-sm font-medium text-white hover:bg-indigo-500 transition-colors"
>
Go home
</Link>
</div>
)
}