admin/app/(dashboard)/provinces/page.tsx
alisaza e1eaf5eff5 feat: initial ghabilee-admin backoffice app
Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js
app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
2026-09-05 13:12:59 +03:30

11 lines
459 B
TypeScript

import { redirect } from 'next/navigation'
// Province-level management UI is disabled — the admin surface only manages
// cities (see `cities/page.tsx`'s own note on why province filtering is
// off). The pre-disable implementation (a standalone PaginatedList of
// provinces) is preserved in git history (blame this file) rather than kept
// here commented out, should it need restoring.
export default function ProvincesPage() {
redirect('/cities')
}