chore: initial project import
Some checks failed
CI - Production Readiness / Verify (push) Has been cancelled
Some checks failed
CI - Production Readiness / Verify (push) Has been cancelled
This commit is contained in:
13
app/super-admin/reports/page.tsx
Normal file
13
app/super-admin/reports/page.tsx
Normal file
@ -0,0 +1,13 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user