14 lines
516 B
TypeScript
14 lines
516 B
TypeScript
import { DashboardPlaceholder } from "@/components/placeholders";
|
|
import { ShellPage } from "@/components/page-templates";
|
|
import { getDashboardData } from "@/lib/platform-data";
|
|
|
|
export default async function ContactGrowthReportPage() {
|
|
const data = await getDashboardData();
|
|
|
|
return (
|
|
<ShellPage shell="admin" title="Contact Growth Report" description="Pertumbuhan audience dan active contacts.">
|
|
<DashboardPlaceholder stats={data.stats} priorityQueue={data.priorityQueue} />
|
|
</ShellPage>
|
|
);
|
|
}
|