function AdmissionsPage({ openTour }) { const [openFaq, setOpenFaq] = React.useState(0); const faqs = [ { q: 'What is the minimum starting age?', a: 'The site headline states 9 months. The curriculum copy refers to "45 days" and an expanded baby unit accepting infants from 45 days is in transition. We will confirm the current accepted minimum age with you at the tour.' }, { q: 'Do you offer full-day or half-day?', a: 'Full-day is standard; half-day options exist for some programmes. Hours and exact session times are confirmed at the tour.' }, { q: 'How much are the fees?', a: 'Fees are on request — we provide a current schedule when you enquire. Please do not rely on third-party fee ranges quoted on listing sites; they conflict and aren\'t official.' }, { q: 'Are you KHDA-registered?', a: 'Yes. IDEA Early Learning Center is registered with the KHDA Early Childhood Centre directory (CenterID 501848).' }, { q: 'What languages are taught?', a: 'English is the language of instruction. Arabic and French enrichment sessions are part of the timetable (reported by third-party reviews — to be confirmed term-by-term).' }, { q: 'Where exactly is the centre?', a: 'Victory Heights, within Dubai Sports City. Ten minutes from Arabian Ranches, Motor City, JGE, JVT, Remraam and Dubailand. The exact villa & map link will be confirmed before publishing.' }, ]; return (
Admissions at IDEA ELC
Admissions & fees

A simple, parent-friendly admissions process.

{/* Steps */}
{[ { n: '01', t: 'Book a tour', s: 'Spend 45 minutes with our principal. See the rooms. Ask anything.', c: 'var(--c-magenta)' }, { n: '02', t: 'Trial visit', s: 'Your child joins their age group for a short trial morning — at no obligation.', c: 'var(--c-teal)' }, { n: '03', t: 'Application', s: 'Submit the application form, child documents and proof of residence.', c: 'var(--c-green)' }, { n: '04', t: 'Confirm & settle', s: 'Place confirmed. We agree a gentle settling-in schedule.', c: 'var(--c-red)' }, ].map((s, i) => (
{s.n}

{s.t}

{s.s}

{i === 0 && ( )}
))}
{/* Fees + documents */}
Fees

Fees on request.

We share our current, official fee schedule directly with families once you've enquired. We deliberately don't publish third-party ranges because they conflict and aren't current.

Request fees 800 4332 352
What to bring

Application documents

  • Child's passport & residence visa copies
  • Emirates ID (parents & child if issued)
  • Vaccination card (up-to-date)
  • Recent passport-style photo
  • Proof of residence (Ejari / DEWA / tenancy)

Document list to be confirmed with the centre admissions team.

{/* FAQ */}
{faqs.map((f, i) => ( ))}
); } window.AdmissionsPage = AdmissionsPage;