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-15 12:27:39 +07:00
|
|
|
import MyContentPageTitleColorFrame from '@/app/ui/my-content/new/my-content-page-title';
|
|
|
|
|
import MyContentStatsOverview from '@/app/ui/my-content/new/my-content-stats-overview';
|
2026-01-04 17:08:28 +07:00
|
|
|
|
|
|
|
|
export default function Page() {
|
|
|
|
|
return (
|
|
|
|
|
<>
|
2026-01-15 12:27:39 +07:00
|
|
|
<MyContentPageTitleColorFrame title="my-content" description="my-content-description" />
|
|
|
|
|
<MyContentStatsOverview />
|
|
|
|
|
{/* <div className="split-blocks">
|
2026-01-04 17:08:28 +07:00
|
|
|
<MyContentInfoBlock />
|
2026-01-07 13:03:50 +07:00
|
|
|
<MyContentPieChart />
|
2026-01-15 12:27:39 +07:00
|
|
|
</div> */}
|
2026-01-07 13:03:50 +07:00
|
|
|
<FilesTable fileType={'all'} />
|
2026-01-04 17:08:28 +07:00
|
|
|
</>
|
|
|
|
|
)
|
|
|
|
|
}
|