// Landing page — /institutions const { useState: useS, useEffect: useE } = React; function Landing() { const [tab, setTab] = useS('overview'); const tabs = [ ['overview', 'Overview'], ['sevis', 'SEVIS Queue'], ['arrivals', 'New Arrivals'], ['drawer', 'Student Drawer'], ['whatif', 'What-If Simulator'], ['batch', 'Batch I-20'], ['audit', 'Audit Trail'], ]; const caps = { overview: 'The Thursday 8am dashboard. KPI row, 30-day reporting calendar, and risk-first student list in one view.', sevis: 'Every reportable event ordered by days-left, with blockers surfaced inline. The DSO still files in SEVIS — ImmiHub just makes sure it happens on time.', arrivals: 'Initial registration 30-day federal window tracked from I-20 issue through SEVIS registration.', drawer: 'Student record with F-1 journey timeline, signature history, and one-click DSO actions.', whatif: 'Preview every downstream effect of a program-end change before committing — the single most differentiated screen in the product.', batch: 'Pre-departure season in one workflow. Select, review, sign, generate — audit-logged throughout.', audit: 'Every DSO action with actor, timestamp, and IP. Monospace timestamps. PDF-ready for DHS audits and SEVP recertification.', }; return ( <> {mockupStyleTag()}