// Presentation function ModuleSlides() { const [cur, setCur] = React.useState(2); const [tab, setTab] = React.useState('Home'); const S = KS_DATA.slides; // Render one slide by kind const renderSlide = (s, small = false) => { const scale = small ? 0.24 : 1; const p = (n) => n * scale + 'px'; if (s.kind === 'title') { return (
DigiSeva Platform
Q3 FY 2026-27 Review
MINISTRY OF ELECTRONICS & IT · 13 JULY 2026
); } if (s.kind === 'agenda') { return (
Agenda
{s.items.map((it, i) => (
{i+1}
{it}
))}
); } if (s.kind === 'kpi') { const kpis = [ {label:'Citizen accounts', v:'847M', d:'+ 4.2% QoQ', c:'#0F7A3E'}, {label:'Monthly txns', v:'12.4 B', d:'+ 11% QoQ', c:'#0F7A3E'}, {label:'Avg latency', v:'218 ms', d:'– 34 ms', c:'#0F7A3E'}, {label:'Uptime', v:'99.982%', d:'SLA: 99.95%', c:'#0F7A3E'}, ]; return (
Programme Status
Rolling 90-day metrics · as of 12 Jul 2026
{kpis.map(k => (
{k.label}
{k.v}
{k.d}
))}
); } if (s.kind === 'chart') { const data = [420, 540, 590, 680, 720, 810, 890, 940, 1020, 1080, 1180, 1240]; const max = 1300; return (
Adoption Metrics
Monthly active users (millions) · rolling 12 months
{[0, 0.25, 0.5, 0.75, 1].map((t, i) => ( ))} `${40 + i * (740/11)},${340 - (d/max)*300}`).join(' ')} /> `${40 + i * (740/11)},${340 - (d/max)*300}`).join(' ')} 780,340`} /> {data.map((d, i) => ( ))} {['Jul','Aug','Sep','Oct','Nov','Dec','Jan','Feb','Mar','Apr','May','Jun'].map((m, i) => ( {m} ))}
); } if (s.kind === 'bars') { const bars = KS_DATA.budget.rows.slice(0, 6); return (
Budget Utilisation
Top 6 programmes · FY 26-27 YTD
{bars.map((b, i) => (
{b[0]} {b[4].toFixed(1)}%
70 ? 'var(--ok)' : b[4] > 55 ? 'var(--warn)' : 'var(--err)', }}/>
))}
); } if (s.kind === 'risks') { const risks = [ {r:'Data centre commissioning delay (Bhubaneswar)', i:'High', p:'Med', m:'Q3 review; escalation to MoS'}, {r:'GPU procurement — global supply constraints', i:'High', p:'High', m:'Multi-vendor RFP; PPP mode'}, {r:'Skilling ecosystem lag for AA framework', i:'Med', p:'Med', m:'FutureSkills alignment; 12 new courses'}, {r:'State onboarding pace on federated fabric', i:'Med', p:'High', m:'Model MoU + technical assistance'}, ]; return (
Risks & Mitigations
Risk
Impact
Prob.
Mitigation
{risks.map((rk, i) => (
{rk.r}
{rk.i}
{rk.p}
{rk.m}
))}
); } if (s.kind === 'closing') { return (
Ask from the Committee
Approval for ₹ 8,940 crore supplementary allocation in Q4 to accelerate the sovereign compute layer, and formal endorsement of the federation blueprint for state onboarding.
); } return null; }; return (
P
DigiSeva Platform — Q3 Review Deck
7 slides · Ready for Committee
{['File','Home','Insert','Design','Transitions','Animation','Slide Show','AI Assist'].map(t => ( ))}
{/* Slide sorter + main canvas + notes */}
{/* Sorter */}
{S.map((s, i) => ( ))}
{/* Canvas + notes */}
{renderSlide(S[cur])}
{/* Notes */}
Speaker notes · Slide {cur+1} of {S.length}
{[ 'Open with a brief acknowledgment of Committee members. Set expectation: 20-minute review, then Q&A. Note that the Cabinet Note (File No. MeitY/DPI/2026/044) has been circulated.', 'Walk through five items. Emphasise that the Committee ask on slide 7 is the primary decision-point.', 'Highlight uptime — first quarter above 99.98% since programme inception. Latency reduction reflects the Q2 edge-caching rollout across 12 states.', 'Adoption is tracking above plan. Q4 uplift driven by MyGov integration and state e-district onboarding (11 states this quarter).', 'Digital India Programme is behind on utilisation (61.7%). Root cause: delayed C-DAC bench hiring — resolved as of June. Expect Q4 catch-up.', 'Two Highs deserve attention. The GPU risk is being mitigated via a multi-vendor RFP; we expect to close by August.', 'Direct ask: supplementary allocation + federation blueprint endorsement. If time permits, defer detailed discussion of Section 3.2 to the follow-up.', ][cur]}
{/* AI slide generator side rail */}
Design suggestions
{['Data-forward layout','Cover with subtle grid','Executive summary card','Comparison split'].map(t => ( ))}
Generate with AI