klg-asutk-app/app/airworthiness/page.tsx
Yuriy aa052763f6 Безопасность и качество: 8 исправлений + обновления
- .env.example: полный шаблон, защита секретов
- .gitignore: явное исключение .env.* и секретов
- layout.tsx: XSS — заменён dangerouslySetInnerHTML на next/script для SW
- ESLint: no-console error (allow warn/error), ignore scripts/
- scripts/remove-console-logs.js: очистка console.log без glob
- backend/routes/modules: README с планом рефакторинга крупных файлов
- SECURITY.md: гид по секретам, XSS, CORS, auth, линту
- .husky/pre-commit: запуск npm run lint

+ прочие правки приложения и бэкенда

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-14 21:29:16 +03:00

38 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* Лётная годность — перенаправление на расширенный модуль
*/
'use client';
import { useEffect } from 'react';
import { useRouter } from 'next/navigation';
import { PageLayout } from '@/components/ui';
import Link from 'next/link';
export default function AirworthinessPage() {
return (
<PageLayout title="📜 Лётная годность" subtitle="Модули контроля ЛГ">
<div className="grid grid-cols-1 lg:grid-cols-2 gap-4">
<Link href="/airworthiness-core" className="card p-6 hover:shadow-lg transition-shadow">
<div className="text-2xl mb-2">🔧</div>
<div className="font-bold text-sm">Контроль ЛГ (полный модуль)</div>
<div className="text-xs text-gray-500 mt-1">AD/ДЛГ · Бюллетени · Ресурсы · Программы ТО · Компоненты</div>
</Link>
<Link href="/maintenance" className="card p-6 hover:shadow-lg transition-shadow">
<div className="text-2xl mb-2">📐</div>
<div className="font-bold text-sm">Наряды на ТО</div>
<div className="text-xs text-gray-500 mt-1">Work Orders · CRS · AOG priority</div>
</Link>
<Link href="/defects" className="card p-6 hover:shadow-lg transition-shadow">
<div className="text-2xl mb-2">🛠</div>
<div className="font-bold text-sm">Дефекты</div>
<div className="text-xs text-gray-500 mt-1">Регистрация · Устранение · MEL deferral</div>
</Link>
<Link href="/personnel-plg" className="card p-6 hover:shadow-lg transition-shadow">
<div className="text-2xl mb-2">🎓</div>
<div className="font-bold text-sm">Персонал ПЛГ</div>
<div className="text-xs text-gray-500 mt-1">Аттестация · 11 программ · Compliance</div>
</Link>
</div>
</PageLayout>
);
}