import React from 'react'; import { CheckCircle2, Circle, ArrowRight, ClipboardCheck, Shield, FileText, Scale, Gavel } from 'lucide-react'; import { AppView } from '../types'; interface ProcedureGuideProps { onNavigate: (view: AppView) => void; } const ProcedureGuide: React.FC = ({ onNavigate }) => { const steps = [ { id: 1, title: "Diagnostic Screening", desc: "Complete the ASRS or CADI screeners to build clinical evidence for disability impact.", icon: ClipboardCheck, view: AppView.SCREENING, status: 'completed' }, { id: 2, title: "Evidence Vaulting", desc: "Securely upload medical records and IEP/504 evaluations to the HIPAA-compliant vault.", icon: Shield, view: AppView.MEDICAL_RECORDS, status: 'current' }, { id: 3, title: "504 Plan Drafting", desc: "Request reasonable accommodations and formalize support structures with the LEA.", icon: FileText, view: AppView.PLAN_504, status: 'pending' }, { id: 4, title: "Benefit Claims", desc: "Prepare SSI/SSDI application briefs using the automated case builder.", icon: Scale, view: AppView.SSI_SSDI, status: 'pending' }, { id: 5, title: "Civil Litigation", desc: "File ยง 1983 claims for constitutional violations or due process failures.", icon: Gavel, view: AppView.CIVIL_RIGHTS, status: 'pending' } ]; return (

The Advocate's Roadmap

Follow this 5-step validated procedure to build a comprehensive legal and clinical case for disability rights.

{steps.map((step, idx) => (
{step.status === 'completed' ? : }

Phase {step.id}: {step.title}

{step.status}

{step.desc}

))}

Ready to initiate your claim?

Our Legal AI is ready to draft your first brief based on these roadmap steps.

); }; export default ProcedureGuide;