add image upload, fix styles

This commit is contained in:
smanylov
2025-12-09 16:35:47 +07:00
parent 7e485ee524
commit c8e8be8935
28 changed files with 547 additions and 83 deletions
+14
View File
@@ -0,0 +1,14 @@
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';
export default function Page() {
return (
<div>
<h1 className="page-title">Защита аудио</h1>
<ProtectionSummary />
<TestSection />
<ProtectedFilesTable />
</div>
)
}