Files
no-copy-frontend/src/app/pages/marking-photo/page.tsx
T

16 lines
517 B
TypeScript
Raw Normal View History

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';
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>
)
}