// Zen Interiors — Home page function HomePage({ navigate, openEnquiry }) { const projects = window.ZEN_PROJECTS; const featured = projects.filter(p => p.featured); const philosophy = window.ZEN_PHILOSOPHY; const awards = window.ZEN_AWARDS; const services = window.ZEN_SERVICES; // Hero rotation const heroImages = [ 'media/project-volante-penthouse-01.webp', 'media/project-one-palm-residence-01.webp', 'media/project-district-one-villa-01.webp', 'media/project-volante-penthouse-02.webp', ]; const heroLabels = [ { name: 'Volante Penthouse', sector: 'Penthouse · Business Bay' }, { name: 'One Palm Residence', sector: 'Apartment · Palm Jumeirah' }, { name: 'District One Villa', sector: 'Villa · MBR City' }, { name: 'Volante — Lounge', sector: 'Penthouse · Business Bay' }, ]; const [heroIdx, setHeroIdx] = useState(0); useEffect(() => { const t = setInterval(() => setHeroIdx(i => (i + 1) % heroImages.length), 5200); return () => clearInterval(t); }, []); return (
{/* HERO ---------------------------------------------------------- */}
{heroImages.map((src, i) => ( {heroLabels[i].name} ))}
{/* subtle left-edge vignette to anchor the headline */}
Residential interior design · Dubai · since 2003

Calm rooms,
quietly delivered.

We design and deliver serene, bespoke homes — concept to keys — for penthouses, apartments and villas in Dubai and beyond.

{/* hero footer caption */}
{heroImages.map((_, i) => (
{heroLabels[heroIdx].name}
{heroLabels[heroIdx].sector}
{/* INTRO STATEMENT ----------------------------------------------- */}
01 — The studio

We are a Dubai studio of designers and project managers, founded in 2003 by Merete & Patrick van IJzendoorn. We make calm, considered homes — and then we deliver them, turnkey, to the day you walk in.

{[ { stat: 'Since 2003', label: 'Independent Dubai studio' }, { stat: 'Turnkey', label: 'Concept to keys' }, { stat: 'IPA winners', label: 'International Property Awards 2012 · 2013 · 2014' }, { stat: 'EN · AR · RU · ZH', label: 'Working languages' }, ].map((s, i) => (
{s.stat}
{s.label}
))}
{/* SELECTED PROJECTS --------------------------------------------- */}
{ e.preventDefault(); navigate('/projects'); }} className="btn-link">All projects } /> {/* Asymmetric editorial grid */}
{/* HORIZONTAL PHILOSOPHY ----------------------------------------- */}
{philosophy.map((p, i) => (
0{i+1}

{p.word}

{p.body}

))}
{/* SECTORS STRIP -------------------------------------------------- */}
{ e.preventDefault(); navigate('/sectors'); }} className="btn-link">All sectors } />
{[ { key: 'penthouses', name: 'Penthouses', img: 'media/project-volante-penthouse-03.webp' }, { key: 'apartments', name: 'Apartments', img: 'media/project-tiara-aquamarine-residence.webp' }, { key: 'villas', name: 'Villas', img: 'media/project-wildflower-villa-01.webp' }, ].map(s => ( { e.preventDefault(); navigate(`/sectors/${s.key}`); }} style={{ display: 'block', cursor: 'pointer' }}>
{s.name}

{s.name}

))}
{/* SERVICES ------------------------------------------------------- */}
05 — Services

One studio, concept to keys.

Three service lines, often joined together on a single brief. We carry the project end-to-end so the design that arrives matches the design that was drawn.

{ e.preventDefault(); navigate('/services'); }} style={{ color: 'var(--paper)', borderColor: 'var(--linen)' }} className="btn-link"> All services
{services.map((s, i) => (
0{i+1}

{s.name}

{s.line}

{ e.preventDefault(); navigate('/services'); }} className="btn-link" style={{ color: 'var(--paper)', borderColor: 'var(--linen)', marginTop: 24 }}> Read more
))}
{/* AWARDS + PRESS ------------------------------------------------- */}
{ e.preventDefault(); navigate('/awards'); }} className="btn-link">All awards } />
{awards.map((a, i) => (
{a.year}
{a.body}
{a.category}
{a.project}
))}
{/* PRESS STRIP --------------------------------------------------- */}
{[...window.ZEN_PRESS, ...window.ZEN_PRESS, ...window.ZEN_PRESS].map((p, i) => ( Featured in {p} ))}
{/* CTA BAND ------------------------------------------------------ */}
07 — Begin

Tell us about your home.

We begin every project with a quiet, unhurried conversation — in person at our Al Barsha showroom, by video, or at the home itself. No fee, no pressure to commit.

Call {window.ZEN_CONTACT.phone}
); } window.HomePage = HomePage;