import React, { useState } from 'react'; import { AlertTriangle, FileText, ShieldAlert } from 'lucide-react'; interface Props { open: boolean; dossierLevel?: string; onCancel: () => void; onConfirm: () => Promise | void; loading?: boolean; } /** * F1: explicit consent to generate structure without regulation pack. */ const GenerationConsentModal: React.FC = ({ open, dossierLevel = 'blind', onCancel, onConfirm, loading = false, }) => { const [ack, setAck] = useState(false); if (!open) return null; return (

Status dossier: {dossierLevel || 'blind'}

Nie mamy w systemie regulaminu / wytycznych tego naboru. Możemy wygenerować szkielet sekcji na podstawie opisu projektu i danych firmy (tryb strukturalny).

  • Nie będzie to ugruntowane w regułach naboru
  • Limity, koszty, DNSH i checklista mogą być niekompletne
  • Ostateczna weryfikacja z oficjalnymi dokumentami leży po Twojej stronie
Preferujemy dołączenie regulaminu (URL/PDF) zamiast tej ścieżki.
); }; export default GenerationConsentModal;