16 lines
517 B
TypeScript
16 lines
517 B
TypeScript
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 UploadSection from '@/app/ui/marking-page/upload-section';
|
||
|
|
|
||
|
|
export default function Page() {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<h1 className="page-title">🛡️ Защита изображений</h1>
|
||
|
|
<ProtectionSummary />
|
||
|
|
<UploadSection />
|
||
|
|
<TestSection />
|
||
|
|
<ProtectedFilesTable />
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
}
|