// NGIS website — Faculty Development Cell // Content from the school's Faculty Development reference + Robotmea ETM brief. function FacultyScreen({ onNav }) { const { Card, EyebrowLabel, Button, Badge } = window.NGISDesignSystem_f6dc23; const Icon = window.Icon; const { PATTERNS, NAVY_GRADIENT, SectionDecor, PhotoFrame, EduMotifs, CTABand } = window.Decor; const crestAccents = ['green', 'navy', 'blue', 'gold']; const programmes = [ { t: 'Teacher Training & PD', d: 'Structured professional development that brings an entire faculty up to a modern teaching standard.', icon: 'graduationCap', accent: 'green' }, { t: 'Educational Leadership', d: 'Leadership programmes for principals and heads of department driving whole-school change.', icon: 'users', accent: 'navy' }, { t: 'AI, Robotics & STEAM', d: 'Deep capability-building in AI, robotics, STEAM education and emerging technologies.', icon: 'brain', accent: 'blue' }, { t: 'Curriculum & Assessment', d: 'Innovation in curriculum design and assessment, moving beyond rote learning toward evidence of real understanding.', icon: 'bookMarked', accent: 'gold' }, { t: 'International Certification', d: 'Internationally recognised certifications and recognition for participating educators.', icon: 'award', accent: 'green' }, { t: 'Continuous PD (CPD)', d: 'Ongoing CPD cycles that keep the standard alive long after the initial training ends.', icon: 'refresh', accent: 'navy' }, { t: 'International L&D', d: 'Access to international learning-and-development programmes, courses and exchange opportunities.', icon: 'globe', accent: 'blue' }, ]; const credentials = [ { icon: 'award', t: 'Robotron Certification', d: 'Educators who complete the programme earn certificates issued by Robotron, South Korea.' }, { icon: 'globe', t: 'International Standards', d: 'Training is benchmarked to global teaching standards, not local minimums.' }, { icon: 'users', t: 'Open to Outsiders', d: 'The Cell is open to educators beyond NGIS, a resource for the wider teaching community.' }, { icon: 'shieldCheck', t: 'An Initiative of Robotmea', d: 'An initiative of Robotmea, accredited by Robotron, the same authority behind ETM.' }, ]; return (
{/* ===================== Header ===================== */}
An Initiative of Robotmea · Accredited by Robotron

Faculty Development Cell

Teachers first. Always.

The single most reliable predictor of a programme’s outcome is the teacher standing next to the technology. The Cell empowers educators and school leaders with 21st-century teaching skills, from emerging-technology pedagogy to international certification and continuous professional development.

{/* ===================== Why teachers first ===================== */}

Technology changes a classroom only as much as the teacher beside it. So we invest in teachers first: better teachers, stronger learners, a brighter tomorrow.

{/* ===================== Mid-page CTA ===================== */}
onNav('Admissions', 'enquiry-form')} />
{/* ===================== Programmes ===================== */}
What the Cell delivers

Seven programmes for educator growth

{programmes.map(p => (

{p.t}

{p.d}

))} {/* CTA tile */}

Train with us

Open to educators from every school.

{/* ===================== Credentials ===================== */}
Recognition that travels

Certified by Robotron. Open to all.

{credentials.map((c, i) => { const accent = crestAccents[i % 4]; return (

{c.t}

{c.d}

); })}
{/* ===================== CTA ===================== */}

Grow with the Faculty Development Cell

For NGIS faculty and educators everywhere. Earn Robotron-certified credentials.

); } window.FacultyScreen = FacultyScreen;