change marking page layout

This commit is contained in:
smanylov
2025-12-16 15:03:32 +07:00
parent e94b0bf041
commit c9784bf18f
10 changed files with 340 additions and 28 deletions
@@ -2,18 +2,23 @@ import ProtectedFilesTable from '@/app/ui/marking-page/protected-files-table';
import ProtectionSummary from '@/app/ui/marking-page/protection-summary';
import TestSection from '@/app/ui/marking-page/test-section';
import UploadSectionImage from '@/app/ui/marking-page/upload-section-image';
import { IconImageFile } from '@/app/ui/icons/icons';
import TanstakFilesTable from '@/app/components/tanstakTable';
import { useTranslations } from 'next-intl';
export default function Page() {
const t = useTranslations('Global');
return (
<div>
<div className="page-title">
<h1 >Защита изображений</h1>
<h1>
{t('image-protection')}
</h1>
</div>
<ProtectionSummary />
<UploadSectionImage />
<TestSection />
<ProtectedFilesTable />
<TanstakFilesTable/>
{/* <ProtectedFilesTable /> */}
</div>
)
}