14 lines
533 B
TypeScript
14 lines
533 B
TypeScript
import { DashboardPlaceholder } from "@/components/placeholders";
|
|
import { ShellPage } from "@/components/page-templates";
|
|
import { getPlatformSummary } from "@/lib/platform-data";
|
|
|
|
export default async function SuperAdminReportsPage() {
|
|
const data = await getPlatformSummary();
|
|
|
|
return (
|
|
<ShellPage shell="super-admin" title="Platform Reports" description="Global traffic, tenant growth, usage, dan failure monitoring.">
|
|
<DashboardPlaceholder stats={data.stats} priorityQueue={data.tenants} />
|
|
</ShellPage>
|
|
);
|
|
}
|