// Manufacturing & Craft — the differentiator page. function ManufacturingPage({ setRoute, showFactoryStats }) { const disciplines = [ { n: "01", name: "Joinery & millwork", blurb: "From a guestroom headboard to a 12-metre presiding bench: panels, parquetry, cabinetry, full-height doors. CNC-roughed where appropriate, hand-finished as standard.", tag: "Veneers · Solid hardwood · Lacquer", }, { n: "02", name: "Loose furniture", blurb: "Beds, sofas, lounge chairs, occasional pieces — manufactured to operator or designer's spec. Prototyped in-house and signed off before run production.", tag: "Frames · Springing · Foams · Ticking", }, { n: "03", name: "Soft furnishings", blurb: "Drapery, sheers, headboards, banquettes, cushion programmes. Cut, machined and finished in our upholstery hall alongside the joinery.", tag: "Drapery · Upholstery · Bedding · Trim", }, { n: "04", name: "Architectural metalwork", blurb: "Balustrade, reception desks, brass and stainless detailing, decorative screens. Laser-cut, hand-welded, electroplated and lacquered.", tag: "Brass · Stainless · Aluminium · Bronze", }, ]; return (
{/* Hero */}
Manufacturing & Craft · the differentiator

We make what we design.

240,000 sq.ft of factory floor inside our 520,000 sq.ft Jebel Ali headquarters. Joinery, furniture, upholstery and architectural metalwork — every fixed and loose piece we draw is built here, by our own craftsmen.

{/* Stats */} {showFactoryStats && (
{[ { v: "240,000", l: "Sq.ft factory" }, { v: "520,000", l: "Sq.ft HQ" }, { v: "1976", l: "Built in-house since" }, { v: "ISO 9001", l: "Quality system" }, ].map((s, i) => (
{s.v}
{s.l}
))}
)} {/* Why in-house */}
Why in-house

The same hand from the first concept board to the final hand-rubbed lacquer.

Most fit-out houses draw the work and sub-contract the build. We do both. A designer can walk twenty paces from the drawing table to a full-scale mock-up in the machine hall, and see the piece they specified being made.

It collapses the feedback loop, removes a layer of supplier risk, and means we own the quality of what we deliver from sketch through to commissioning.

{/* Four disciplines */}
{disciplines.map(d => (
{d.n}

{d.name}

{d.blurb}

{d.tag}
))}
{/* Process bar */}
{[ { n: "01", t: "Brief", d: "First conversation; site visit; programme; budget envelope." }, { n: "02", t: "Design", d: "Schematic, detailed design, material boards, value engineering." }, { n: "03", t: "Manufacture", d: "Shop drawings, mock-ups, production at Jebel Ali. Visit any time." }, { n: "04", t: "Install", d: "Site team, MEP coordination, snagging, commissioning." }, { n: "05", t: "Handover", d: "Operator/owner sign-off, after-care, warranty programme." }, ].map((s, i, arr) => (
{s.n}
{s.t}
{s.d}
))}
{/* Big image */}
The Jebel Ali HQ
JEBEL ALI HEADQUARTERS · DUBAI · A 520,000 SQ.FT CAMPUS SHARED WITH SISTER BRAND GLYI
{/* Placeholder for real workshop photography */}
Visit the factory

See your project in production.

We invite every client to visit the shop floor at least once during the build — to see the mock-ups, sign off the veneer match, and meet the craftsmen building the work. Brief us first; we'll arrange access.

PLACEHOLDER
Real shop-floor photography
Awaiting hi-res workshop / craftsmen-at-work set from the studio.
); } Object.assign(window, { ManufacturingPage });