18 lines
564 B
TypeScript
18 lines
564 B
TypeScript
import PopulationChart from '@/components/PopulationChart';
|
|
import MapPopulationChart from '@/components/MapPopulationChart';
|
|
import RecurringWindowChart from '@/components/RecurringWindowChart';
|
|
|
|
export default function OverviewPage() {
|
|
return (
|
|
<div className="space-y-6">
|
|
<div>
|
|
<h1 className="text-2xl text-ink mb-1">Overview</h1>
|
|
<p className="text-sm text-ink-muted">Population and activity across the server.</p>
|
|
</div>
|
|
<PopulationChart />
|
|
<MapPopulationChart />
|
|
<RecurringWindowChart />
|
|
</div>
|
|
);
|
|
}
|