'use client'; import { Download, Eye } from 'lucide-react'; import Image from 'next/image'; import { useLanguage } from '@/shared/language'; import { Button } from '@/shared/shadcn-ui/button'; import { Card, CardContent } from '@/shared/shadcn-ui/card'; export function CertificatesPage() { const { t } = useLanguage(); // This data would typically come from an API or CMS // We're keeping it as-is since it's dynamic content const certificates = [ { id: 1, title: 'ISO 9001:2015', description: 'Сертификат системы менеджмента качества', image: '/placeholder.svg?height=400&width=300', issueDate: '15.03.2022', expiryDate: '15.03.2025', }, { id: 2, title: 'ISO 14001:2015', description: 'Сертификат экологического менеджмента', image: '/placeholder.svg?height=400&width=300', issueDate: '10.05.2022', expiryDate: '10.05.2025', }, { id: 3, title: 'OHSAS 18001', description: 'Сертификат системы управления охраной труда', image: '/placeholder.svg?height=400&width=300', issueDate: '22.07.2022', expiryDate: '22.07.2025', }, { id: 4, title: 'Сертификат качества топлива', description: 'Подтверждение соответствия топлива стандартам качества', image: '/placeholder.svg?height=400&width=300', issueDate: '05.01.2023', expiryDate: '05.01.2024', }, { id: 5, title: 'Сертификат соответствия', description: 'Соответствие услуг национальным стандартам', image: '/placeholder.svg?height=400&width=300', issueDate: '18.09.2022', expiryDate: '18.09.2025', }, { id: 6, title: 'Лицензия на хранение ГСМ', description: 'Разрешение на хранение горюче-смазочных материалов', image: '/placeholder.svg?height=400&width=300', issueDate: '30.11.2021', expiryDate: '30.11.2026', }, ]; return ( <>

{t('certificates.title')}

{t('certificates.description')}

{certificates.map((certificate) => (
{certificate.title}

{certificate.title}

{certificate.description}

{t('certificates.issueDate')}: {certificate.issueDate}

{t('certificates.expiryDate')}: {certificate.expiryDate}

))}
); }