add market-page layouts, v1 for endpoints

This commit is contained in:
smanylov
2025-12-05 16:19:13 +07:00
parent 6a290832d6
commit fcb87c180c
13 changed files with 289 additions and 11 deletions
+16
View File
@@ -0,0 +1,16 @@
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>
)
}