2026-01-04 17:08:28 +07:00
|
|
|
import MyContentInfoBlock from '@/app/ui/my-content/my-content-info-block';
|
|
|
|
|
import FilesTable from '@/app/ui/dashboard/files-table';
|
2026-01-07 13:03:50 +07:00
|
|
|
import MyContentPieChart from '@/app/ui/my-content/my-content-pie-chart';
|
2026-01-04 17:08:28 +07:00
|
|
|
|
|
|
|
|
export default function Page() {
|
|
|
|
|
return (
|
|
|
|
|
<>
|
2026-01-05 15:07:10 +07:00
|
|
|
<div className="split-blocks">
|
2026-01-04 17:08:28 +07:00
|
|
|
<MyContentInfoBlock />
|
2026-01-07 13:03:50 +07:00
|
|
|
<MyContentPieChart />
|
2026-01-04 17:08:28 +07:00
|
|
|
</div>
|
2026-01-07 13:03:50 +07:00
|
|
|
<FilesTable fileType={'all'} />
|
2026-01-04 17:08:28 +07:00
|
|
|
</>
|
|
|
|
|
)
|
|
|
|
|
}
|