2025-12-05 16:19:13 +07:00
|
|
|
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';
|
2025-12-09 16:35:47 +07:00
|
|
|
import UploadSectionImage from '@/app/ui/marking-page/upload-section-image';
|
2025-12-05 16:19:13 +07:00
|
|
|
|
|
|
|
|
export default function Page() {
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
2025-12-09 16:35:47 +07:00
|
|
|
<h1 className="page-title">Защита изображений</h1>
|
2025-12-05 16:19:13 +07:00
|
|
|
<ProtectionSummary />
|
2025-12-09 16:35:47 +07:00
|
|
|
<UploadSectionImage />
|
2025-12-05 16:19:13 +07:00
|
|
|
<TestSection />
|
|
|
|
|
<ProtectedFilesTable />
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|