checkout accessibility/category products

This commit is contained in:
haniyeroozmand
2026-04-02 14:18:37 +03:30
parent 65c28948a3
commit a2de32dfad
12 changed files with 270 additions and 301 deletions

View File

@@ -24,6 +24,7 @@ import {
TicketStatus,
updateAdminTicket,
} from "@/public/src/services/tickets/api";
import NotLogin from '@/components/Notlogin';
const sampleOrders = [
{ id: "PR-10452", status: "در حال پردازش", statusColor: "amber", total: "500,000", regDate: "15 دی 1404", deliveryDate: "20 دی 1404", delivered: false },
@@ -414,19 +415,7 @@ export default function DashboardPage() {
if (!authorized) {
return (
<div className="min-h-screen flex items-center justify-center bg-gray-50 px-4" dir="rtl">
<div className="bg-white shadow-xl rounded-2xl p-10 max-w-md w-full text-center border border-gray-100">
<div className="flex justify-center mb-6">
<div className="bg-red-100 p-4 rounded-full">
<ShieldX className="w-10 h-10 text-red-600" />
</div>
</div>
<h1 className="text-2xl font-bold text-gray-800 mb-2">دسترسی غیرمجاز</h1>
<p className="text-gray-500 text-sm leading-relaxed mb-6">برای مشاهده داشبورد باید ابتدا وارد حساب کاربری خود شوید.</p>
<button onClick={() => router.push("/")} className="flex mx-auto cursor-pointer items-center gap-2 bg-gray-900 text-white px-4 py-2 rounded-lg text-sm hover:bg-black transition">
<Home className="w-4 h-4" />
بازگشت به صفحه اصلی
</button>
</div>
<NotLogin/>
</div>
);
}