2026-01-15 14:18:08 +07:00
|
|
|
import PageTitleColorFrame from '@/app/ui/page-title-color-frame';
|
|
|
|
|
import DahboardGeographySection from '@/app/ui/dashboard/new/dashboard-geography-section';
|
|
|
|
|
import DashboardPlatformsList from '@/app/ui/dashboard/new/dashboard-platforms-list';
|
|
|
|
|
import ViolationsMyCases from '@/app/ui/violations/violations-my-cases';
|
|
|
|
|
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-01-15 14:18:08 +07:00
|
|
|
export default function Page() {
|
|
|
|
|
const FILE_TYPE = "all";
|
|
|
|
|
|
|
|
|
|
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
|
|
|
<ViolationsMyCases />
|
|
|
|
|
<ViolationsCheckAllSection />
|
|
|
|
|
<ViolationsTable />
|
2026-01-23 15:43:05 +07:00
|
|
|
<div className="dashboard-main-grid">
|
2026-01-15 14:18:08 +07:00
|
|
|
<DashboardPlatformsList />
|
|
|
|
|
<DahboardGeographySection />
|
|
|
|
|
</div>
|
|
|
|
|
</>
|
|
|
|
|
)
|
|
|
|
|
}
|