2026-03-16 17:12:52 +07:00
|
|
|
'use client'
|
|
|
|
|
|
2026-03-02 18:57:52 +07:00
|
|
|
import { useTranslations } from 'next-intl';
|
|
|
|
|
import { useParams } from 'next/navigation'
|
|
|
|
|
import { IconEyeDashed } from '@/app/ui/icons/icons';
|
|
|
|
|
|
|
|
|
|
export default function ViolationPageTitle() {
|
|
|
|
|
const t = useTranslations('Global');
|
|
|
|
|
const params = useParams()
|
|
|
|
|
const id = params.id
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="page-title-color-frame violation-page">
|
|
|
|
|
<div
|
|
|
|
|
className="violation-page-icon"
|
|
|
|
|
>
|
|
|
|
|
<IconEyeDashed />
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<h1>
|
|
|
|
|
file id: {id}
|
|
|
|
|
</h1>
|
|
|
|
|
<div
|
|
|
|
|
className="violation-page-info"
|
|
|
|
|
>
|
|
|
|
|
<span>
|
|
|
|
|
fileType
|
|
|
|
|
</span>
|
|
|
|
|
|
|
|
|
|
<span>
|
|
|
|
|
fileSize
|
|
|
|
|
</span>
|
|
|
|
|
|
|
|
|
|
<span>
|
|
|
|
|
fileViolationDate
|
|
|
|
|
</span>
|
|
|
|
|
|
|
|
|
|
<span>
|
|
|
|
|
fileViolationType
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|