2026-03-18 15:21:49 +07:00
|
|
|
import ViolationsTable from '@/app/ui/violations/violations-table';
|
2025-12-04 18:21:39 +07:00
|
|
|
import FinalSummary from '@/app/ui/reports/final-summary';
|
|
|
|
|
import AnalyticsCardMonth from '@/app/ui/reports/analytics-card-month';
|
2026-03-18 19:07:32 +07:00
|
|
|
import AnalyticsCardGeography from '@/app/ui/reports/analytics-card-geography';
|
2025-12-04 18:21:39 +07:00
|
|
|
import ActivityByContentType from '@/app/ui/reports/activity-by-content-type';
|
2025-12-27 13:47:51 +07:00
|
|
|
import PageTitle from '@/app/ui/page-title';
|
2026-02-12 13:11:14 +07:00
|
|
|
import ReportsInfo from '@/app/ui/reports/reports-info';
|
2025-12-04 18:21:39 +07:00
|
|
|
|
2025-12-04 17:10:51 +07:00
|
|
|
export default function Page() {
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
2026-01-14 12:48:33 +07:00
|
|
|
<PageTitle title="reports-and-analytics" />
|
2026-02-12 13:11:14 +07:00
|
|
|
<ReportsInfo />
|
2025-12-04 18:21:39 +07:00
|
|
|
<ActivityByContentType />
|
|
|
|
|
<div className="analytics-grid">
|
|
|
|
|
<AnalyticsCardMonth />
|
|
|
|
|
<AnalyticsCardGeography />
|
|
|
|
|
</div>
|
|
|
|
|
<ViolationsTable />
|
|
|
|
|
<FinalSummary />
|
2025-12-04 17:10:51 +07:00
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|