Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
9 lines
233 B
TypeScript
9 lines
233 B
TypeScript
import { redirect } from 'next/navigation'
|
|
|
|
import { APP_ROUTES } from '@/constants/routes'
|
|
|
|
/** Root of backoffice always lands on the admin dashboard. */
|
|
export default function AdminRootPage() {
|
|
redirect(APP_ROUTES.DASHBOARD)
|
|
}
|