2026-04-20 23:06:41 +01:00
|
|
|
import { AdminHeaderPage } from '@/app/components/layout/admin/header';
|
|
|
|
|
import { AdminSideBar } from '@/app/components/layout/admin/sidebar';
|
|
|
|
|
import ManageCategoryClient from './manage-category-client';
|
2026-04-19 03:38:07 +01:00
|
|
|
|
2026-04-20 23:06:41 +01:00
|
|
|
export default function ManageCategoryPage() {
|
2026-04-19 03:38:07 +01:00
|
|
|
return (
|
|
|
|
|
<div className="flex h-screen bg-slate-50 text-slate-900">
|
2026-04-20 23:06:41 +01:00
|
|
|
<AdminSideBar />
|
2026-04-19 03:38:07 +01:00
|
|
|
|
2026-04-20 23:06:41 +01:00
|
|
|
<div className="flex-1 flex flex-col min-h-0 overflow-hidden">
|
|
|
|
|
<AdminHeaderPage />
|
|
|
|
|
<ManageCategoryClient />
|
2026-04-19 03:38:07 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|