// pages-3.jsx — Admissions, About, Contact, and root App const AdmissionsPage = ({ navigate, onBookTour }) => { const D = window.OdysseyData; const [openFaq, setOpenFaq] = React.useState(0); return (
Admissions

Four steps from enquiry to your child's first day.

We move at your pace. Most families finish the process in two to three weeks; some take longer and that's fine. The steps below stay the same.

{D.admissionsSteps.map((s, i) => (
{s.n}

{s.t}

{s.d}

))}
{/* Fees */}
Fees

We share the fee structure on request.

Fees vary by branch and age group and are set under the Kids First Group framework, within Dubai's KHDA fee policy. We share the current structure as part of your enquiry — there are no hidden levies.

Ask us about staggered start dates, sibling discounts, and full-day vs. half-day options during your tour.

{[ ["Registration", "One-off · refundable conditions apply"], ["Term fees", "Across three terms · per age group"], ["Settling-in week", "Included in your child's first term"], ["Sibling discount", "Available — confirm at enquiry"] ].map(([l, v], i) => (
{l}
{v}
BY ENQUIRY
))}
{/* FAQs */}
FAQs

Things parents most often ask.

{D.faqs.map((f, i) => (
{openFaq === i && (
{f.a}
)}
))}
); }; // ---------- About ---------- const AboutPage = ({ navigate, onBookTour }) => (
About Odyssey

We exist for artistic parents raising the creative leaders of tomorrow.

Odyssey Nursery began with a single Dubai campus and a simple conviction: that early-years learning should be done with children, not to them. Twelve years on, that conviction runs across six Dubai branches and a faculty of Reggio-trained educators.

Odyssey staff and child Consent-cleared
Our Story · Timeline

A short history.

Established year TBC with client
{[ { y: "2013", e: "First Dubai branch", d: "Burj Al Arab opens in Umm Al Sheif, KHDA-listed." }, { y: "2015–18", e: "Reggio expansion", d: "Umm Suqeim adds the French-immersion stream; Living Legends opens." }, { y: "2019–22", e: "JBR + Meydan", d: "Beachfront and District One campuses join the group." }, { y: "2023+", e: "City Walk · SZR", d: "Sixth Dubai branch, name being finalised with the client." } ].map((s, i) => (
{s.y}
{s.e}

{s.d}

))}
{[ { t: "Kids First Group", d: "We're part of the Kids First Group portfolio — the UAE's larger early-years operator. Shared safeguarding, HR and training systems sit behind every campus.", l: "kidsfirstgroup.com" }, { t: "Great Place to Work", d: "Self-attributed certification (current year confirmation pending). Our staff retention drives the consistency families notice term to term.", l: null }, { t: "Parent Education Academy", d: "Live talks and workshops for Odyssey parents — from sleep and weaning to early bilingualism — run by the wider Kids First network.", l: "pea.kidsfirstgroup.com" } ].map((p, i) => (

{p.t}

{p.d}

{p.l && {p.l} ↗}
))}
{/* Testimonial placeholder */}
Parent testimonials
Permissioned parent testimonials will appear here. Until written consent is on file, we leave the space honestly empty.
Awaiting consent forms · placeholder only
); // ---------- Contact ---------- const ContactPage = ({ navigate, onBookTour }) => { const D = window.OdysseyData; return (
Contact

How can we help today?

We reply within one working day. WhatsApp is usually fastest; the toll-free line is staffed during admissions hours.

{[ { ic: "phone", t: "Call us", v: "800-REGGIO", h: D.contact.mobile, href: "tel:800-REGGIO" }, { ic: "wa", t: "WhatsApp", v: D.contact.mobileShort, h: "Usually fastest", href: D.contact.waLink }, { ic: "mail", t: "Email", v: D.contact.emailGeneral, h: "Group admissions", href: "mailto:" + D.contact.emailGeneral } ].map((c, i) => (
{c.t}
{c.v}
{c.h}
))}
By branch

Direct lines for each campus.

Mobile +971 52 347 2059 reaches all branches.

{D.branches.map(b => (

{b.name}

{b.address}
))}
); }; Object.assign(window, { AdmissionsPage, AboutPage, ContactPage });