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

24 lines
722 B
TypeScript
Raw Normal View History

2025-12-05 16:19:13 +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 16:35:47 +07:00
import UploadSectionImage from '@/app/ui/marking-page/upload-section-image';
2025-12-16 15:03:32 +07:00
import TanstakFilesTable from '@/app/components/tanstakTable';
import { useTranslations } from 'next-intl';
2025-12-05 16:19:13 +07:00
export default function Page() {
2025-12-16 15:03:32 +07:00
const t = useTranslations('Global');
2025-12-05 16:19:13 +07:00
return (
<div>
2025-12-09 18:08:58 +07:00
<div className="page-title">
2025-12-16 15:03:32 +07:00
<h1>
{t('image-protection')}
</h1>
2025-12-09 18:08:58 +07:00
</div>
2025-12-05 16:19:13 +07:00
<ProtectionSummary />
2025-12-09 16:35:47 +07:00
<UploadSectionImage />
2025-12-05 16:19:13 +07:00
<TestSection />
2025-12-16 15:03:32 +07:00
<TanstakFilesTable/>
{/* <ProtectedFilesTable /> */}
2025-12-05 16:19:13 +07:00
</div>
)
}