// Home page function Home({ onNav, tweaks }) { const { PROJECTS, SERVICES, AWARDS, TESTIMONIALS, SECTORS, SECTOR_COUNTS } = window.DI; const featured = PROJECTS.filter((p) => p.featured); const heroes = ["media/hero-01.webp", "media/hero-02.webp", "media/hero-03.webp"]; const [heroIdx, setHeroIdx] = useState(0); const [testimonialIdx, setTestimonialIdx] = useState(0); const heroMode = tweaks?.heroMode || "slider"; useEffect(() => { if (heroMode !== "slider") return; const id = setInterval(() => setHeroIdx((i) => (i + 1) % heroes.length), 6000); return () => clearInterval(id); }, [heroMode, heroes.length]); return (
{/* HERO */}
{/* Background */} {heroMode === "slider" && heroes.map((src, i) => (
))} {heroMode === "still" && (
)} {heroMode === "video" && (
Factory tour · 2:14
)} {/* Vignette */}
{/* Content */}
Dubai · Abu Dhabi · est. 2012

Designed, made and
built . One contract.

A one-stop shop for fit-out and interior design — design + build, turnkey, with seven manufacturing divisions under our roof in Dubai Investment Park.

Currently in build

Odoo Dubai South — 90,000 sq ft corporate HQ across six in-house divisions.

{/* Hero slider dots */} {heroMode === "slider" && (
{heroes.map((_, i) => ( ))}
)}
{/* STAT BAND */}
Years
13+

of design and delivery

Completed
1,200+

commercial projects

Team
1,400+

across studio, factory & site

Production
100ksf

in-house manufacturing footprint

{/* SELECTED PROJECTS */}
Selected projects · 2022 — 2024

Real briefs. Real sectors.
Built by the people who designed them.

{/* Asymmetric showcase grid */}
{/* Odoo - hero card */}
{/* SECTORS MARQUEE */}
{[...SECTORS.filter((s) => s.key !== "all"), ...SECTORS.filter((s) => s.key !== "all")].map((s, i) => ( {s.label} ))}
{/* SERVICES */}
Capabilities

Six services. One accountable team.

Built around a single contract for design AND build. Every service below is delivered by an in-house division — so the people who quoted your project also fabricate, install, and stand behind the 2-year DLP.

{SERVICES.map((s) => (
e.currentTarget.style.background = "var(--mist)"} onMouseLeave={(e) => e.currentTarget.style.background = ""}>
{s.num}

{s.title}

{s.body}

))}
{/* IN-HOUSE TEASER */}
  The differentiator

100,000 sq ft of in-house manufacturing in Dubai Investment Park.

Joinery, glass, metal, signage, furniture, MEP, and Fire-Life-Safety — seven divisions, one yard. We don't sub-contract the things that decide whether a fit-out lands on programme.

{[ { num: "40k", label: "Glass · Metal · Signage", sub: "2025 factory" }, { num: "7", label: "In-house divisions", sub: "MEP to FLS" }, { num: "2yr", label: "Defect liability", sub: "all turnkey projects" }, ].map((s) => (
{s.num}{s.num === "2yr" ? "" : "+"}
{s.label}
{s.sub}
))}
In-house joinery
Workshop · DIP, Dubai
{/* TESTIMONIALS */}
Voices from the brief
{TESTIMONIALS[testimonialIdx].quote}
{TESTIMONIALS[testimonialIdx].name}
{TESTIMONIALS[testimonialIdx].role} · {TESTIMONIALS[testimonialIdx].org}
{TESTIMONIALS.map((t, i) => ( ))}
{/* AWARDS */}

Recognised work — attributed

{AWARDS.length} awards · 2018 — 2026
{AWARDS.map((a) => (
{a.year} {a.name} {a.issuer}
))}
); } function FeaturedCard({ project, onNav, span = 4, aspect = "3/4" }) { return (
{ e.preventDefault(); onNav(`project:${project.slug}`); }} style={{ display: "block" }}>
{project.name}
{project.sectorLabel}

{project.name}

{project.location} · {project.scope}{project.size ? ` · ${project.size}` : ""}
); } Object.assign(window, { Home });