/* Home page — cinematic craft-led hero + sections */ function HomePage({ navigate, addToCart, toggleFav, favs, openProduct }) { return (
); } // ── Hero ────────────────────────────────────────────────────────── function HomeHero({ navigate }) { return (
  Hand-knotted since 1881
·
Finest New Zealand wool
·
Bhadohi · Varanasi · Dubai
·
  Dubai Design District · Building 9
·
Bespoke commissions open
The House of Hands · Est. 1881

Hand-knotted
since 1881.

Heritage luxury carpets, woven from the finest New Zealand wool — for the world's most exceptional rooms. Bespoke commissions and a curated ready collection at our Dubai Design District atelier.

144yrs
A house of carpets since 1881
4,900kn/in²
Reported craft achievement, 1999
5cities
Dubai · Delhi · Mumbai · Hyderabad · Singapore
Scroll
); } // ── Heritage strip ──────────────────────────────────────────────── function HomeHeritageStrip({ navigate }) { return (
est. 1881

A house of carpets, discovered in the weavers' alleys of Bhadohi · Varanasi, woven from the finest New Zealand wool.

{ e.preventDefault(); navigate("craft"); }}> The Craft & Heritage
); } // ── Collections showcase ────────────────────────────────────────── function HomeCollections({ navigate }) { const items = [ { ...COLLECTIONS_BY_STYLE[0], num: "01" }, { ...COLLECTIONS_BY_STYLE[1], num: "02" }, { ...COLLECTIONS_BY_STYLE[2], num: "03" }, { ...COLLECTIONS_BY_STYLE[3], num: "04" }, { ...COLLECTIONS_BY_MATERIAL[0], num: "05" }, { ...COLLECTIONS_BY_MATERIAL[3], num: "06" }, ]; return (
The Collections · A curated selection

Six houses
of pattern and weave.

From classical Persian medallions to mineral-washed moderns — every piece hand-knotted in our Bhadohi ateliers.

{ e.preventDefault(); navigate("collections"); }}> View all collections
navigate("collection", { handle: items[0].handle })}> {items[0].name}
{items[0].num}

{items[0].name}

{items[0].count} pieces · The classical archive
{Icon.arrow}
navigate("collection", { handle: items[1].handle })}> {items[1].name}
{items[1].num}

{items[1].name}

{items[1].count} pieces
{Icon.arrow}
navigate("collection", { handle: items[2].handle })}> {items[2].name}
{items[2].num}

{items[2].name}

{items[2].count} pieces
{Icon.arrow}
navigate("collection", { handle: items[3].handle })}> {items[3].name}
{items[3].num}

{items[3].name}

{items[3].count} pieces
{Icon.arrow}
navigate("collection", { handle: items[4].handle })}> {items[4].name}
{items[4].num}

{items[4].name}

By material · {items[4].count} pieces
{Icon.arrow}
); } // ── Featured pieces ─────────────────────────────────────────────── function HomeFeatured({ navigate, addToCart, toggleFav, favs, openProduct }) { const featured = [PRODUCTS[0], PRODUCTS[6], PRODUCTS[10], PRODUCTS[5]]; return (
Atelier picks · Hand-knotted

Pieces from the floor.

Four ready pieces from the d3 boutique — available now. Bespoke sizing on enquiry.

{featured.map((p, i) => ( ))}
Live catalogue range · captured 2026-05-24
); } // ── Craft intro band ────────────────────────────────────────────── function HomeCraftIntro({ navigate }) { return (
The Craft

One pair of hands.
A million knots.

Every Hands carpet begins with the same quiet act — a single weaver pulling wool through a vertical loom, knot by knot. A large piece can take a single weaver more than a year.

We source the finest New Zealand wool for its lustre and length of staple, dye in small lots in Bhadohi, and weave in three constructions — hand-knotted, hand-woven and hand-tufted. The Persian hand-knotted construction is our signature.

{ e.preventDefault(); navigate("craft"); }}> Inside the atelier
4,900
Knots per in², 1999
A publicly reported craft achievement; attribute, do not call Guinness-certified.
12,000
m² Grand Mosque, Astana
One commission, woven across two years for the Astana / Nur-Sultan Grand Mosque.
3
Constructions
Hand-knotted · hand-woven · hand-tufted. All from finest New Zealand wool.
); } // ── Bespoke band ────────────────────────────────────────────────── function HomeBespoke({ navigate }) { return (
The Atelier · Bespoke service

Turn your idea — or your room — into a carpet that exists nowhere else.

Our in-house design team works directly with interior designers, architects and homeowners — translating a sketch, a mood, or a single material into a one-of-a-kind hand-knotted carpet, woven to the dimensions of your room.

WhatsApp the atelier
Four steps · 16–28 weeks lead-times · client-confirm
01

Consult

A conversation about the room, the brief and the materials. In person at d3, or by video.

02

Design & sample

Our atelier draws the carpet at scale and weaves a hand-knotted sample for sign-off.

03

Weave

The piece is hand-knotted in Bhadohi — months on the loom, knot by knot.

04

Deliver

Finished, washed, packed and delivered to the room. White-glove install on request.

); } // ── Projects teaser ─────────────────────────────────────────────── function HomeProjects({ navigate }) { return (
Projects · Hospitality & residences

Trusted by the world's landmark interiors.

Bespoke carpets for palaces, five-star hotels and private residences across five continents.

{ e.preventDefault(); navigate("projects"); }}> Trade & projects
{PROJECTS.map((proj) => (
navigate("projects")}> {proj.permission === "permission-pending" && (
Client to confirm permission
)} {proj.img ? ( {proj.title} ) : (
Project imagery — client to supply
)}
{proj.kind}

{proj.title}

{proj.scope}
))}
Hospitality
·
five-star hotels (Burj-area) name on permission
·
Residences
·
private homes · UAE · UK · India
·
Institutions
·
a Grand Mosque · 12,000+ m²
); } // ── Quote ───────────────────────────────────────────────────────── function HomeQuote() { return (

A Hands carpet is the slowest piece of furniture you'll ever buy — and the one your room will be designed around for the next hundred years.

The Atelier · A house note house line · not a third-party review
); } // ── Showroom band ───────────────────────────────────────────────── function HomeShowroom({ navigate }) { return (
The Showroom · Dubai Design District

Building 9, d3.

Our Dubai boutique opened at Dubai Design Week 2018 — a designer-led space pairing the ready collection with bespoke consultation rooms.

Address
#3, Ground Floor, Building 9
Dubai Design District, Dubai, UAE
Hours
Mon — Fri · 10:00 – 19:00
Saturday · 10:00 – 18:00 · Sunday closed Directory-listed · client to confirm
); } Object.assign(window, { HomePage });