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

17 lines
485 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 { IconAudioFile } from '@/app/ui/icons/icons';
export default function Page() {
return (
<div>
<div className="page-title">
<h1 >Защита аудио</h1>
</div>
<ProtectionSummary />
<TestSection />
<ProtectedFilesTable />
</div>
)
}