2026-01-15 14:18:08 +07:00
|
|
|
import PageTitleColorFrame from '@/app/ui/page-title-color-frame';
|
2026-04-20 16:08:10 +07:00
|
|
|
import ViolationsMyComplaint from '@/app/ui/violations/violations-my-complaint';
|
2026-01-15 14:18:08 +07:00
|
|
|
import ViolationsCheckAllSection from '@/app/ui/violations/violations-check-all-section';
|
|
|
|
|
import ViolationsTable from '@/app/ui/violations/violations-table';
|
2026-01-23 12:19:37 +07:00
|
|
|
import ViolationsStatistic from '@/app/ui/violations/violations-statistic';
|
2026-03-19 12:49:46 +07:00
|
|
|
import AnalyticsCardGeography from '@/app/ui/reports/analytics-card-geography';
|
|
|
|
|
import AnalyticsCardDistribution from '@/app/ui/reports/analytics-card-distribution';
|
2026-04-20 16:08:10 +07:00
|
|
|
import ViolationsMyClaims from '@/app/ui/violations/violations-my-claims';
|
2026-04-21 18:55:27 +07:00
|
|
|
import ViolationsLastCombinedCases from '@/app/ui/violations/violations-last-combined-cases';
|
2026-01-15 14:18:08 +07:00
|
|
|
|
2026-03-19 12:49:46 +07:00
|
|
|
export default function Page() {
|
2026-01-15 14:18:08 +07:00
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<PageTitleColorFrame
|
|
|
|
|
title="monitoring-copyright-infringements"
|
|
|
|
|
description="monitoring-copyright-infringements-description"
|
|
|
|
|
/>
|
2026-01-23 12:19:37 +07:00
|
|
|
<ViolationsStatistic />
|
2026-01-15 14:18:08 +07:00
|
|
|
<ViolationsCheckAllSection />
|
|
|
|
|
<ViolationsTable />
|
2026-04-21 18:55:27 +07:00
|
|
|
<ViolationsLastCombinedCases />
|
|
|
|
|
{/* <ViolationsMyComplaint />
|
|
|
|
|
<ViolationsMyClaims /> */}
|
2026-03-19 12:49:46 +07:00
|
|
|
<div className="analytics-grid">
|
|
|
|
|
<AnalyticsCardDistribution />
|
|
|
|
|
<AnalyticsCardGeography />
|
2026-01-15 14:18:08 +07:00
|
|
|
</div>
|
2026-04-21 18:55:27 +07:00
|
|
|
|
2026-01-15 14:18:08 +07:00
|
|
|
</>
|
|
|
|
|
)
|
|
|
|
|
}
|