// Admissions page \u2014 process, fees note, FAQ, contact form. function Admissions({ navigate, openTour }) { const steps = [ { n: '01', t: 'Enquire', d: 'Tell us your child\u2019s age and your preferred branch. We\u2019ll route you to the right room.' }, { n: '02', t: 'Visit', d: 'Walk through with the branch manager. 45 minutes. Bring your child if you can.' }, { n: '03', t: 'Register', d: 'Complete the registration pack and submit required documents.' }, { n: '04', t: 'Start', d: 'A gentle settling-in plan with the room educator before you start full-time.' }, ]; const faqs = [ ['What ages do you take?', 'From 45 days to 6 years (across all UAE branches).'], ['Are you KHDA-licensed?', 'Yes \u2014 our Dubai branches are KHDA-licensed Early Childhood Centres. Abu Dhabi is ADEK-regulated. KHDA does not star-grade nurseries, so we don\u2019t publish a rating badge.'], ['What does it cost?', 'Fees vary by branch, age band, and attendance pattern. Please enquire for a current schedule \u2014 we don\u2019t publish unverified third-party figures.'], ['Are meals included?', 'The Dibber Meal is part of the curriculum. Confirm menu, allergens and inclusion with your branch.'], ['Do you support multiple languages?', 'English is the medium of instruction. Arabic provision is in line with UAE early-years requirements \u2014 confirm scope with your branch.'], ['How does settling-in work?', 'A short, staged settling-in plan with the room educator over the first week. Pace adjusted to your child.'], ]; return (
{steps.map(s => (
{s.n}
{s.t}

{s.d}

))}
{/* Fees note */}
Fees

Enquire for current fees.

Fees vary by branch, age band, and whether you choose full-day or flexible attendance. We publish a current schedule on request \u2014 so you get the price for your branch and your child, not a stale aggregator estimate.

Ask on WhatsApp
Third-party sources show AED 26k\u201349k \u2014 not used here
{/* Documents */}
{[ ['Child', 'Birth certificate, recent passport photos, vaccination record, Emirates ID or passport copy.'], ['Parent', 'Emirates ID or passport copy, contact details, employer letter where applicable.'], ].map(([k, v]) => (
{k}

{v}

))}
Final document list \u2014 client to confirm per branch
{/* FAQ */}
{faqs.map(([q, a]) => )}
Ready when you are

Start with a 45-minute tour.

We’ll show you a real classroom, a real day, and answer every question \u2014 ratios, allergies, settling-in, fees.

WhatsApp us
); } function FAQ({ q, a }) { const [open, setOpen] = useState(false); return (
{open && (
{a}
)}
); } Object.assign(window, { Admissions });