Files
no-copy-frontend/src/app/[locale]/pages/marking-photo/page.tsx
T
2025-12-16 20:26:17 +07:00

24 lines
710 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 UploadSectionImage from '@/app/ui/marking-page/upload-section-image';
import { useTranslations } from 'next-intl';
import FilesTable from '@/app/ui/dashboard/files-table';
export default function Page() {
const t = useTranslations('Global');
return (
<div>
<div className="page-title">
<h1>
{t('image-protection')}
</h1>
</div>
<ProtectionSummary />
<UploadSectionImage />
<TestSection />
<FilesTable />
{/* <ProtectedFilesTable /> */}
</div>
)
}