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') }