This commit is contained in:
smanylov
2025-12-18 17:21:18 +07:00
parent a538fe1684
commit 7540dd57de
8 changed files with 201 additions and 46 deletions
+5 -3
View File
@@ -3,7 +3,7 @@ import { Suspense } from 'react';
import ProtectionOverview from '@/app/ui/dashboard/protection-overview';
import StatsGrid from '@/app/ui/dashboard/stats-grid';
import { useTranslations } from 'next-intl';
import FilesTable from '@/app/ui/dashboard/files-table';
import FilesTable from '@/app/ui/dashboard/files-table';
export const metadata: Metadata = {
title: 'Dashboard',
@@ -18,8 +18,10 @@ export default function Page() {
<h1 className="page-title">
{t("statistics")}
</h1>
<ProtectionOverview />
<StatsGrid />
<div className="flex justify-between flex-wrap gap-8">
<ProtectionOverview />
<StatsGrid />
</div>
<FilesTable />
</Suspense>
</div>