// pages-home.jsx — Home page const { useState: useStateH, useEffect: useEffectH } = React; function Home({ navigate }) { // hero rotating image — small confidence move const heroImages = [ "media/project-district-one-villa.webp", "media/project-w-residence-palm.webp", "media/project-villa-36.webp", "media/project-citywalk-penthouse.webp", ]; const [heroIdx, setHeroIdx] = useStateH(0); useEffectH(() => { const t = setInterval(() => setHeroIdx(i => (i + 1) % heroImages.length), 5400); return () => clearInterval(t); }, []); const featured = PROJECTS.filter(p => p.featured).slice(0, 4); return (
{/* ---------- Hero ---------- */}
{heroImages.map((src, i) => (
))}
Bldg 1B · D3 · Dubai — Est. MMVII
◆ — Interior Architecture · Fit-Out · Turnkey — Since 2007

Bespoke luxury
interiors, built turnkey in Dubai.

Now showing
{String(heroIdx + 1).padStart(2, "0")} — {["District One Villa","Palm Residence","Villa N°36","City Walk Penthouse"][heroIdx]}
Image credit pending · Muse studio archive
{/* ---------- Positioning band ---------- */}
◇ — A word from the studio

A small Dubai practice that designs, builds and delivers — for people who would rather hand over one key, not five.

Muse is a husband-and-wife studio led by Michael Dudnyk and Stanislava Rudas-Dudnyk, established at Dubai Design District in 2007. We design residences, penthouses and a selective body of commercial work — and we build them ourselves, under one project manager, with the relevant authority approvals handled in-house.

The work below is by sector. Where photography, photographer credit and client release are all on file, the case study is published in full. Where it isn't, the project is held as a study.

navigate({ name: "studio" })} style={{ marginTop: 16, cursor: "pointer", display: "inline-flex" }}> Read about the studio
{/* ---------- Sectors ---------- */}
Six sectors. One studio.} aside="From a single villa to a turnkey hotel fit-out, the practice runs as one team. Browse the portfolio by sector." />
{SECTOR_CARDS.map((s, i) => (
navigate({ name: "projects", filter: s.id })} >
— {String(i + 1).padStart(2, "0")}

{s.label}

{s.count} →
))}
{/* ---------- Featured case studies ---------- */}
A short cut through the studio. Click any frame to read the case study — concept, materials, process, outcome.} />
{featured.map((p, i) => (
navigate({ name: "case", id: p.id })} >
— No. {String(i + 1).padStart(2, "0")}

{p.title}

{p.sector} · {p.year}
{p.location}
))}
{/* ---------- Process (on noir) ---------- */}
How a Muse project actually runs.} aside="A single project manager, in-house turnkey delivery, and authority approvals handled before they bottleneck the build." />
UAE-licensed contractor · DEWA · DDA · Concordia · Emaar · Nakheel
{/* ---------- Recognition ---------- */}
{/* ---------- CTA band ---------- */}
◆ — Start a project

The room before it is built.

Every Muse project begins with a conversation, a site walk and a render set — before either party commits. Send us your brief, your plans, or just an idea.

WhatsApp — +971 55 357 3290
); } window.Home = Home;