// Shared blocks reused across pages
function TrustStrip() {
return (
KHDA-registered Early Childhood Centre
US Creative Curriculum · 38 Objectives
Ages 9 months – 6 years
Victory Heights, Dubai Sports City
);
}
window.TrustStrip = TrustStrip;
function SectionHeader({ eyebrow, title, sub, align = 'left' }) {
return (
{eyebrow}
{title}
{sub &&
{sub}
}
);
}
window.SectionHeader = SectionHeader;
function ProgrammeCards({ openTour, compact = false }) {
const bands = [
{ id: 'infants', label: 'Infants & Toddlers', age: '9 m – 3 yrs', color: 'var(--c-magenta)',
points: ['Responsive, attachment-led care', 'Sensory & motor play', 'Sleep & meal routines respected', 'Daily photo updates to families'] },
{ id: 'preKG', label: 'Pre-KG', age: '3 – 4 yrs', color: 'var(--c-teal)',
points: ['Hands-on inquiry projects', 'Early phonics & numeracy play', 'Arabic ×2 / French ×1 weekly *', 'Outdoor + indoor balance'] },
{ id: 'kg1', label: 'KG1', age: '4 – 5 yrs', color: 'var(--c-green)',
points: ['Reading, writing & maths foundations', 'Project-based learning', 'Friendship & social-emotional focus', 'Community partnerships'] },
{ id: 'kg2', label: 'KG2', age: '5 – 6 yrs', color: 'var(--c-red)',
points: ['Common-Core aligned readiness', 'Confident literacy & numeracy', 'Transition coaching for primary', 'Portfolio of learning'] },
];
return (
{bands.map((b, i) => (
{['I','D','E','A'][i]}
{!compact && (
)}
))}
);
}
window.ProgrammeCards = ProgrammeCards;
function CtaBand({ openTour, title, sub, dark = true }) {
return (
{title || "Come see it for yourself — book a tour."}
{sub || "Forty-five minutes inside our classrooms is worth more than any brochure. Pick a slot that suits you."}
);
}
window.CtaBand = CtaBand;