2025-12-04 18:21:39 +07:00
|
|
|
import StatsGrid from '@/app/ui/dashboard/stats-grid';
|
|
|
|
|
import ViolationsTable from '@/app/ui/dashboard/violations-table';
|
|
|
|
|
import FinalSummary from '@/app/ui/reports/final-summary';
|
|
|
|
|
import AnalyticsCardMonth from '@/app/ui/reports/analytics-card-month';
|
|
|
|
|
import AnalyticsCardGeography from '@/app/ui/reports/analytics-carв-geography';
|
|
|
|
|
import ActivityByContentType from '@/app/ui/reports/activity-by-content-type';
|
|
|
|
|
|
2025-12-04 17:10:51 +07:00
|
|
|
export default function Page() {
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
2025-12-04 18:21:39 +07:00
|
|
|
<h1 className="page-title">Отчёты и аналитика</h1>
|
|
|
|
|
<StatsGrid />
|
|
|
|
|
<ActivityByContentType />
|
|
|
|
|
<div className="analytics-grid">
|
|
|
|
|
<AnalyticsCardMonth />
|
|
|
|
|
<AnalyticsCardGeography />
|
|
|
|
|
</div>
|
|
|
|
|
<ViolationsTable />
|
|
|
|
|
<FinalSummary />
|
2025-12-04 17:10:51 +07:00
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|