add violations layout
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
import PageTitleColorFrame from '@/app/ui/page-title-color-frame';
|
||||
import ProtectionStatistic from '@/app/ui/marking-page/new/protection-statistic';
|
||||
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';
|
||||
export default function Page() {
|
||||
const FILE_TYPE = "all";
|
||||
|
||||
return (
|
||||
<>
|
||||
<PageTitleColorFrame
|
||||
title="monitoring-copyright-infringements"
|
||||
description="monitoring-copyright-infringements-description"
|
||||
/>
|
||||
<ProtectionStatistic fileType={FILE_TYPE} />
|
||||
<ViolationsMyCases />
|
||||
<ViolationsCheckAllSection />
|
||||
<ViolationsTable />
|
||||
<div className="grid grid-cols-2 mb-[30px] gap-[20px]">
|
||||
<DashboardPlatformsList />
|
||||
<DahboardGeographySection />
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user