function ProgrammesPage({ openTour }) { const bands = [ { id: 'infants', label: 'Infants & Toddlers', age: '9 months – 3 years', tier: 'Pre-KG entry path', color: 'var(--c-magenta)', img: 'media/gallery-08.webp', pitch: 'A gentle, sensory-rich introduction to days away from home. Sleep, feeding and comfort routines are respected — and learning starts the moment a baby tracks a face.', points: [ ['Care', 'Attachment-led key-teacher system'], ['Routine', 'Naps, bottles, meals on your child\'s rhythm'], ['Learning', 'Sensory trays, music, language modelling'], ['Comms', 'Daily photo + sleep/meal update'], ] }, { id: 'preKG', label: 'Pre-KG', age: '3 – 4 years', color: 'var(--c-teal)', img: 'media/gallery-03.webp', pitch: 'Children become explorers. Long uninterrupted play in art, blocks, dramatic-play, sand and water — with teachers gently weaving in language, numeracy and self-regulation.', points: [ ['Care', '2 key teachers per group'], ['Routine', 'Full-day or half-day'], ['Learning', 'Inquiry projects, story sequencing, early letters'], ['Languages', 'Arabic ×2/wk · French ×1/wk *'], ] }, { id: 'kg1', label: 'KG1', age: '4 – 5 years', color: 'var(--c-green)', img: 'media/gallery-01.webp', pitch: 'Friendships deepen. Children take more responsibility for their day — choosing projects, helping friends and beginning to read, write and reason about number.', points: [ ['Care', 'Specialist subject teachers join the team'], ['Routine', 'Full-day with PE & enrichment'], ['Learning', 'Reading, writing, maths foundations'], ['Social', 'Project-based learning'], ] }, { id: 'kg2', label: 'KG2', age: '5 – 6 years', tier: 'Big-school readiness', color: 'var(--c-red)', img: 'media/curriculum-03.webp', pitch: 'The bridge to Year 1 / Grade 1. Confident readers and curious mathematicians, ready for the next school — with a portfolio of learning to take with them.', points: [ ['Care', 'Transition coaching with families'], ['Routine', 'Full-day, structured for primary'], ['Learning', 'Common-Core aligned readiness'], ['Outcome', 'KHDA-registered KG2 completion'], ] }, ]; return (
Children at IDEA ELC
Programmes & ages

From first steps to first chapter books — four programmes, one curriculum.

{bands.map((b, i) => (
{`${b.label}
{b.tier && {b.tier}}
{['I','D','E','A'][i]}

{b.label}

{b.age}

{b.pitch}

{b.points.map(([k, v]) => (
{k}
{v}
))}
Ask admissions
))}

* Languages & ratios reported by third-party reviews — to be confirmed with the centre. Minimum starting age in transition (9 months currently; 45-day-old infants planned per WSA).

{/* Enrichment */}
{[ ['Music & movement', 'var(--c-magenta)'], ['Football', 'var(--c-teal)'], ['Karate', 'var(--c-green)'], ['Dance', 'var(--c-red)'], ['Gymnastics', 'var(--c-sun)'], ].map(([t, c]) => (
{t}
))}
Holiday camps — themed weeks of activities through school breaks. Open to existing & visiting families.
); } window.ProgrammesPage = ProgrammesPage;