Files
no-copy-frontend/src/app/[locale]/pages/my-content/page.tsx
T

24 lines
683 B
TypeScript
Raw Normal View History

2026-01-04 17:08:28 +07:00
import MyContentInfoBlock from '@/app/ui/my-content/my-content-info-block';
import { PieChartComponent } from '@/app/components/PieChartComponent';
import FilesTable from '@/app/ui/dashboard/files-table';
const data = [
{ name: 'images', value: 33, color: '#f08c00' },
{ name: 'videos', value: 50, color: '#2f9e44' },
{ name: 'audios', value: 25, color: '#1971c2' },
{ name: 'documents', value: 25, color: '#a561e6' },
];
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-05 15:07:10 +07:00
<div className="protection-overview">
2026-01-04 17:08:28 +07:00
<PieChartComponent data={data} />
</div>
</div>
<FilesTable fileType={'all'}/>
</>
)
}