first commit
This commit is contained in:
17
app/not-found.tsx
Normal file
17
app/not-found.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import Link from 'next/link';
|
||||
|
||||
export default function NotFound() {
|
||||
return (
|
||||
<div className="flex flex-col items-center justify-center min-h-screen ">
|
||||
<h1 className="text-9xl font-bold text-white">404</h1>
|
||||
<h2 className="text-2xl font-semibold mt-4 text-neutral-50">صفحه مورد نظر پیدا نشد</h2>
|
||||
<p className="text-neutral-300 mt-2">متأسفیم، صفحهای که به دنبال آن هستید وجود ندارد.</p>
|
||||
<Link
|
||||
href="/"
|
||||
className="mt-6 px-6 py-2 bg-white text-blue-900 rounded-lg transition"
|
||||
>
|
||||
بازگشت به داشبورد
|
||||
</Link>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user