Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
16 lines
448 B
TypeScript
16 lines
448 B
TypeScript
import CategoryTree from '@/app/(dashboard)/event-categories/_components/CategoryTree'
|
|
import PageNavbar from '@/components/layouts/PageNavbar'
|
|
|
|
const CategoriesPage = () => {
|
|
return (
|
|
<section className="h-full w-full text-right">
|
|
<PageNavbar pageTitle="دستهبندیهای رویداد" />
|
|
<div className="admin-page-container">
|
|
<CategoryTree />
|
|
</div>
|
|
</section>
|
|
)
|
|
}
|
|
|
|
export default CategoriesPage
|