function IndustryReadiness({ onNavigate }) {
const pillars = [
{ t: 'Interview Preparation', desc: 'Mock HR & technical interviews with AI feedback', ic: window.IconChat, prog: 60, lessons: 12 },
{ t: 'Resume Builder', desc: 'ITI-specific resume templates & auto-fill', ic: window.IconFileText, prog: 100, lessons: 4 },
{ t: 'Soft Skills & Communication', desc: 'Workplace English, teamwork, etiquette', ic: window.IconUsers, prog: 45, lessons: 16 },
{ t: 'Workplace Ethics', desc: 'Discipline, punctuality, responsibility', ic: window.IconShield, prog: 80, lessons: 8 },
];
const lean = [
{ t: '5S Methodology', hi: 'सॉर्ट · सेट · शाइन · स्टैंडर्डाइज़ · सस्टेन', done: true },
{ t: 'Kaizen — Continuous Improvement', hi: 'निरंतर सुधार', done: true },
{ t: 'TPM Basics', hi: 'कुल उत्पादक रखरखाव', done: false },
{ t: 'Lean Manufacturing', hi: 'लीन विनिर्माण', done: false },
{ t: 'Industrial Documentation', hi: 'औद्योगिक दस्तावेज़ीकरण', done: false },
];
return (
Industry Readiness
From trade test to shop floor.
Everything beyond the syllabus that makes you employable — interviews, resume, soft skills and industry practices.
{/* Placement readiness index hero */}
PLACEMENT READINESS INDEX
72
/100
Grade B2 · Job-ready soon
Complete Soft Skills and TPM Basics to reach A-grade placement readiness.
{[
{ k: 'Trade skills', v: 84 },
{ k: 'Soft skills', v: 58 },
{ k: 'Interview readiness', v: 62 },
{ k: 'Documentation', v: 71 },
].map(x => (
{x.k}
{x.v}
= 80 ? 'var(--green-600)' : x.v >= 60 ? 'var(--saffron-500)' : 'var(--red-600)' }} />
))}
{/* Pillars */}
{pillars.map(p => {
const I = p.ic;
return (
{p.t}
{p.prog === 100 ?
✓ Done :
{p.lessons} lessons}
{p.desc}
);
})}
{/* Lean & industry practices */}
Industry practices & standards
{lean.map(l => (
{l.done ? : }
{!l.done &&
}
))}
{/* Job matches */}
{[
{ r: 'Junior Fitter', co: 'Tata Motors · Pune', m: '92%' },
{ r: 'Machine Operator', co: 'Bosch · Bengaluru', m: '85%' },
{ r: 'Maintenance Trainee', co: 'L&T · Mumbai', m: '78%' },
{ r: 'Apprentice Fitter', co: 'NTPC · Odisha', m: '74%' },
].map(j => (
))}
);
}
window.IndustryReadiness = IndustryReadiness;