create all proj components also build main screen ui also create sambil dashbord

This commit is contained in:
m7amedez5511
2026-06-04 21:24:01 +03:00
parent 54e57ff32a
commit 5554f5238c
27 changed files with 1274 additions and 73 deletions

12
app/forbidden/page.tsx Normal file
View File

@@ -0,0 +1,12 @@
export default function ForbiddenPage() {
return (
<main className="min-h-screen bg-[linear-gradient(135deg,#020617_0%,#111827_45%,#172554_100%)] text-slate-100 flex items-center justify-center px-6 py-10">
<section className="w-full max-w-xl rounded-3xl border border-rose-400/20 bg-slate-900/85 p-8 shadow-2xl shadow-slate-950/30 text-center">
<p className="text-sm uppercase tracking-[0.35em] text-rose-200">Access denied</p>
<h1 className="mt-4 text-3xl font-semibold text-white">You do not have permission to open this section.</h1>
<p className="mt-3 text-slate-300">Contact an administrator to request access to the required module.</p>
<a href="/dashboard" className="mt-6 inline-flex rounded-full bg-cyan-400 px-4 py-2 text-sm font-semibold text-slate-950 hover:bg-cyan-300">Return to dashboard</a>
</section>
</main>
);
}