Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
11 lines
459 B
TypeScript
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')
|
|
}
|