Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
16 lines
389 B
TypeScript
16 lines
389 B
TypeScript
'use client'
|
|
|
|
import { Suspense } from 'react'
|
|
|
|
import { PageLoading } from '@/components/feedback/LoadingState'
|
|
import { AdminAuthContent } from '@/components/auth/AdminAuthContent'
|
|
import { texts } from '@/texts'
|
|
|
|
export default function AuthPage() {
|
|
return (
|
|
<Suspense fallback={<PageLoading label={texts.auth.preparingLogin} />}>
|
|
<AdminAuthContent />
|
|
</Suspense>
|
|
)
|
|
}
|