Files
no-copy-frontend/src/app/[locale]/pages/marking-audio/page.tsx
T

17 lines
485 B
TypeScript
Raw Normal View History

2025-12-09 16:35:47 +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 18:08:58 +07:00
import { IconAudioFile } from '@/app/ui/icons/icons';
2025-12-09 16:35:47 +07:00
export default function Page() {
return (
<div>
2025-12-09 18:08:58 +07:00
<div className="page-title">
<h1 >Защита аудио</h1>
</div>
2025-12-09 16:35:47 +07:00
<ProtectionSummary />
<TestSection />
<ProtectedFilesTable />
</div>
)
}