first commit

This commit is contained in:
2026-05-23 13:22:10 +03:30
parent 5f9ee72174
commit 6591a52f27
52 changed files with 3937 additions and 133 deletions

17
app/not-found.tsx Normal file
View 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>
);
}