// Zen Interiors — About, Awards, Services, Contact pages // ABOUT --------------------------------------------------------------------- function AboutPage({ navigate, openEnquiry }) { return (
The studio

A quiet practice, since 2003.

{/* Founders */}
{/* placeholder portrait — founders not yet provided */}
FOUNDERS PORTRAIT — TO BE SUPPLIED
Founders

Merete & Patrick van IJzendoorn.

Merete and Patrick founded Zen Interiors in Dubai in 2003. Merete Broen — the studio's design voice and General Manager — leads brief, concept and material; Patrick leads delivery and turnkey operations.

The studio is feng-shui aware: we draw plans that breathe, that flow, that settle. We design slowly, in close conversation. We don't repeat ourselves.

{ e.preventDefault(); navigate('/contact'); }} className="btn-link">Visit the showroom
{/* Philosophy */}
{window.ZEN_PHILOSOPHY.map((p, i, arr) => (
0{i+1}

{p.word}

{p.body}

))}
{/* Process Timeline */}
{[ { n: '01', name: 'Discovery', body: 'A long, unhurried conversation about how you live.' }, { n: '02', name: 'Concept', body: 'Plans, moodboards, material samples in hand.' }, { n: '03', name: 'Design', body: 'Drawings, joinery, lighting, FF&E specification.' }, { n: '04', name: 'Construction', body: 'Renovation, MEP coordination, on-site supervision.' }, { n: '05', name: 'Fit-out', body: 'Bespoke joinery, finishes, installations.' }, { n: '06', name: 'Styling', body: 'Furniture, art, objects, soft styling — final walkthrough.' }, ].map((s, i, arr) => (
{s.n}

{s.name}

{s.body}

))}
{/* Studio image strip */}
{['media/project-burj-khalifa-residence-02.webp','media/project-grand-staircase.webp','media/project-volante-penthouse-04.webp'].map(src => (
))}
{/* Footprint */}
{[ { region: 'United Arab Emirates', places: ['Dubai', 'Sharjah', 'Abu Dhabi'] }, { region: 'GCC', places: ['Oman', 'Jordan'] }, { region: 'Europe', places: ['Bulgaria'] }, { region: 'Africa', places: ['Kenya', 'Seychelles'] }, { region: 'South Asia', places: ['India', 'Maldives'] }, ].map((r, i, arr) => (
{r.region}
    {r.places.map(p => (
  • {p}
  • ))}
))}
{/* CTA */}

Begin a conversation.

); } // AWARDS -------------------------------------------------------------------- function AwardsPage({ navigate }) { const awards = window.ZEN_AWARDS; return (
Recognition

International Property Awards.

The studio's published wins, attributed in full. Post-2014 recognition is omitted here until we re-collect and confirm with the studio.

{awards.map((a, i) => (
{a.year}
{a.body}
{a.category}
{a.project}
))}

Note · All wins attributed to International Property Awards. Trophy artwork and certificates available on request. Post-2014 recognition to be re-collected before publishing.

{/* Press */}
{window.ZEN_PRESS.map((p, i, arr) => (
{p}
Logo to be supplied
))}
); } // SERVICES ------------------------------------------------------------------ function ServicesPage({ navigate, openEnquiry }) { const services = window.ZEN_SERVICES; return (
Services

Concept to keys.

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

{services.map((s, i) => (
0{i+1}

{s.name.split(' ')[0]}
{s.name.split(' ').slice(1).join(' ') || 'design.'}

{s.line}

{s.body}

Deliverables
{s.deliverables.map((d, j) => (
{String(j+1).padStart(2,'0')} {d}
))}
))} {/* Additional services list */}
{[ 'Space planning', 'Project management', 'Colour consultation', 'Home theatre design', 'Custom blinds & shades', 'Art selection & curation', 'Home staging', 'Renovation supervision', ].map((d, j, arr) => (
{d}
))}

In-house joinery / MEP scope to be confirmed with the studio.

); } // CONTACT ------------------------------------------------------------------- function ContactPage({ openEnquiry }) { const c = window.ZEN_CONTACT; return (
Contact

We'd like to hear from you.

Showroom
    {c.addressLines.map((l, i) =>
  • {l}
  • )}

{c.hoursNote}

Reach us
{/* Map placeholder */}
{/* abstract map: hairline grid + a marker — coords TBC */} AL BARSHA 1
Map · coords to be confirmed
By appointment

Visit the showroom in Al Barsha.

Our showroom holds a working library of materials, finishes, and pieces drawn from past commissions. We meet by appointment — give us a little notice so we can lay out samples for your project.


Working languages
{['English', 'العربية · Arabic', 'Русский · Russian', '中文 · Chinese'].map(l => ( {l} ))}
); } // JOURNAL (placeholder) ----------------------------------------------------- function JournalPage({ navigate }) { return (
Journal · Phase 2

Notes & insights.

The studio journal — material studies, project notes, conversations with craftspeople — opens in Phase 2 once we have content with the client.

); } window.AboutPage = AboutPage; window.AwardsPage = AwardsPage; window.ServicesPage = ServicesPage; window.ContactPage = ContactPage; window.JournalPage = JournalPage;