// Home page — hero, craft strip, selected projects, sectors, capabilities, manufacturing teaser, CTA. function HomeHero({ setRoute, heroVariant }) { const imgMap = { lobby: "media/home-section-04.webp", council: "media/public-areas-01.webp", palace: "media/hospitality-05.webp", suite: "media/hospitality-14.webp", atrium: "media/headquarters-02.webp", }; const heroImg = imgMap[heroVariant] || imgMap.lobby; return (
EST · 1976 JEBEL ALI · DUBAI
1,000+ PROJECTS 7 CITIES

Designed,
made
& installed.

Luxury turnkey interiors for hotels, palaces and public space. From first sketch to final snag — manufactured under one roof in our 240,000 sq.ft Dubai factory.

); } function CredibilityStrip() { const { STATS } = window.GLI_DATA; return (
{STATS.slice(0, 4).map((s, i) => (
{s.v}
{s.l}
))}
); } function CraftStrip({ setRoute }) { return (
The differentiator

We make what we design.

Most fit-out houses draw the work and sub-contract the build. We do both. Joinery, loose furniture, soft furnishings and architectural metalwork — all manufactured by our own craftsmen, in our own 240,000 sq.ft factory, alongside the design studio that drew them.

The latest in machine and laser technology, combined with traditional craftsmanship. The same hand from the first concept board to the final hand-rubbed lacquer.

Inside the factory FACTORY · JEBEL ALI
EST 1976 · IN-HOUSE
Joinery hall, machine bay & finishing room.
240k SQ.FT →
In-house · since 1976
{[ ["Joinery", "·"], ["Furniture", "·"], ["Upholstery", "·"], ["Metalwork", "·"], ].map(([k]) => (
{k}
))}
); } function SelectedProjects({ setRoute }) { const { PROJECTS } = window.GLI_DATA; const featured = [PROJECTS[0], PROJECTS[3], PROJECTS[5], PROJECTS[4], PROJECTS[7], PROJECTS[1]]; const onOpen = (id) => setRoute({ page: "project", id }); return (
setRoute({ page: "projects" })}>View all projects} />
{featured.map(p => )}
); } function SectorsBlock({ setRoute }) { const { SECTORS } = window.GLI_DATA; return (
{SECTORS.map(s => (
setRoute({ page: "projects", sector: s.name })}> {s.name}
{s.count}+ PROJECTS
{s.name}

{s.blurb}

EXPLORE →
))}
); } function CapabilitiesBlock({ setRoute }) { const { CAPABILITIES } = window.GLI_DATA; return (
{CAPABILITIES.map((c, i) => (
{c.name}
0{i+1}

{c.name}

{c.blurb}

    {c.items.map(it => (
  • {it}
  • ))}
))}
); } function MfgTeaser({ setRoute }) { return (
Manufacturing & Craft

A factory the size of four football pitches.

Inside our Jebel Ali headquarters, 240,000 sq.ft of joinery, upholstery, metalwork and finishing — a single floor where the designers, machinists and craftsmen build every fixed and loose piece we specify.

); } function CitiesStrip() { const { CITIES } = window.GLI_DATA; return (
An international network
{CITIES.map(c => (
{c}
))}
); } function CTAStrip({ setRoute }) { return (
Start a project

Tell us what
you're building.

We respond to every brief within two working days. Discreet on royal and private residential.

Or call +971 4 886 2220 · glinfo@gli.ae
); } function Home({ setRoute, heroVariant }) { const { REFERENCES } = window.GLI_DATA; return (
); } Object.assign(window, { Home });