// Home page function Home({ navigate, headlineStyle }) { const data = window.DS_DATA; const heroImage = "media/home-og-hero.webp"; const featured = data.projects.filter((p) => p.featured).slice(0, 5); return (
{/* Hero */}
Designsmith reception — Al Quoz Dubai
Designsmith — Dubai · Since 1988
{headlineStyle === "tagline" ? (

Your go-to partner for all things construction, fit out & joinery.

) : headlineStyle === "build" ? (

We build Dubai's most demanding interiors and towers.

) : (

37 years of build. 1,600 projects. One factory.

)}
{/* Statement strip */}
About — 01

A Dubai contractor, since 1988.

Designsmith is a turnkey design-and-build contractor — construction, fit-out and in-house joinery, delivered as a single trade-coordinated programme.

Founded by the Sanganee family in 1988, we run a 200,000 sq ft joinery factory in Al Quoz, hold a G+12 high-rise licence, and have completed more than 1,600 projects across hospitality, commercial, residential, healthcare, wellness and tower construction. We deliver across the UAE, India and KSA.

navigate({ name: "studio" })}>Inside the studio navigate({ name: "how-we-build" })}>How we build
{/* Featured case study — large editorial split */}
navigate({ name: "projects" })}>All projects ({data.projects.length})} />
{/* Sectors */}
navigate({ name: "sectors" })}>All sectors} />
{data.sectors.map((s) => ( navigate({ name: "projects", filter: s.id })} /> ))}
{/* How we build teaser */}
navigate({ name: "how-we-build" })}>How we build} />
Construction site

Earthwork to handover, in one programme — coordinated by people who own the joinery line, the MEP package and the authority approvals.

    {data.capabilities.map((c) => (
  1. {c.code}
    {c.title}
  2. ))}
navigate({ name: "how-we-build" })}>Read the build method
{/* Factory pitch — dark band */}
The factory — 05

The real moat: 200,000 sq ft of joinery in Al Quoz.

Joinery, carpentry, metalwork, marble and finishes — under one roof, on one programme, accountable to one contractor. Our factory is why our finishes ship on time and our show floors hand over first-pass.

Joinery factory floor
Construction lifecycle
{/* Awards marquee */}
navigate({ name: "awards" })}>Full ledger} />
{/* CTA band */}

Got a brief? Let's price the build.

Send us a scope, a programme and any drawings you have. We respond within two working days with a sector lead.

); } // Editorial split-layout featured case study row used on the home page. function FeaturedCaseStudy({ project, navigate, layout = "split-left" }) { if (!project) return null; const isLeft = layout === "split-left"; const ImageCol = (
navigate({ name: "project", id: project.id })} > {project.name}
); const TextCol = (
{project.sectorLabel} / {project.location} / {project.year}

{project.name}

{project.summary}

Scope
{project.scope}
{project.area !== "—" ? (<>
Area
{project.area}
) : null}
Services
{project.services.join(" · ")}
); return (
{isLeft ? ImageCol : TextCol} {isLeft ? TextCol : ImageCol}
); } Object.assign(window, { Home });