'use client'; import DocumentViewModal from '@/components/DocumentViewModal'; import { PageLayout } from '@/components/ui'; export default function DocumentsPage() { const links = [ { title: 'Входящие документы', desc: 'PDF и DOCX файлы', href: '/inbox', icon: '📥' }, { title: 'Вложения аудитов', desc: 'Фото и протоколы', href: '/audits', icon: '🔍' }, { title: 'Сертификаты', desc: 'Сертификаты ЛГ', href: '/airworthiness', icon: '📜' }, { title: 'Нормативные документы', desc: 'Part-M RU · ФАП', href: '/regulations', icon: '📚' }, { title: 'Чек-листы', desc: 'Шаблоны проверок', href: '/checklists', icon: '✅' }, { title: 'Шаблоны документов', desc: 'Заявки, акты, письма, формы', href: '/templates', icon: '📋' }, ]; return (
{links.map(l => (
{l.icon}
{l.title}
{l.desc}
))}
); }