// SENSI — page sections const { useState, useEffect, useRef } = React; // ====== NAV ====== function TopBar({ page, setPage, locale, setLocale, openConsult, onDark }) { const [scrolled, setScrolled] = useState(false); useEffect(() => { const onScroll = () => setScrolled(window.scrollY > 40); window.addEventListener('scroll', onScroll, { passive: true }); onScroll(); return () => window.removeEventListener('scroll', onScroll); }, []); const nav = [ { k:'materials', t:'Materials' }, { k:'brands', t:'Brands' }, { k:'studio', t:'SENSI Studio' }, { k:'projects', t:'Projects' }, { k:'showroom', t:'Showroom' }, { k:'about', t:'About' }, ]; return ( ); } function Locale({ locale, setLocale }) { const locs = ['EN', 'AR', 'RU', 'ZH']; return (
{locs.map(l => ( ))}
); } // ====== HERO ====== function Hero({ openConsult, locale }) { const c = window.SENSI_DATA.COPY[locale] || window.SENSI_DATA.COPY.en; return (
Dubai · Design District · Since 2010

{c.heroTitle}

{c.heroLede}

40+ European houses 37 named projects 5-stage Studio process Scroll  ↓
); } // ====== ORIGIN ====== function Origin({ locale }) { const c = window.SENSI_DATA.COPY[locale] || window.SENSI_DATA.COPY.en; return (

"{c.originQuote}"

— Sara Ghorashi, Managing Director · SENSI Trading L.L.C

); } // ====== DUAL VALUE PROP ====== function DualVP({ setPage }) { return (
01 — Materials

A curated house of
premium surfaces.

Tiles, surfaces, mosaics, luxury bathrooms, tops and wood — 40+ European and international houses, specified for landmark Dubai projects since 2010. Selected, not just stocked.

02 — SENSI Studio

Integrated interior
design service.

A five-stage process from design consultation through specification — for residential and commercial spaces. Surfaces, light, layout and substance, handled as one engagement.

); } // ====== MATERIALS GRID ====== function MaterialsTeaser({ setPage }) { const cats = window.SENSI_DATA.MATERIAL_CATEGORIES; return (
Materials

Surfaces,
by category.

Six categories cover what we curate — Italian porcelain and ceramics, large-format surfaces, luxury bathroom fittings, bespoke tops, hand-laid mosaics and wood flooring. Specified for residential and commercial scale.

{cats.map((c, i) => { const sizeClass = c.size === 'tall' ? 'mat-tall' : c.size === 'wide' ? 'mat-wide' : 'mat-med'; return ( setPage('materials')}>
{c.name}
0{i+1}
{c.name}
{c.meta}
); })}
); } // ====== PROJECTS TEASER ====== function ProjectsTeaser({ openProject, setPage }) { const p = window.SENSI_DATA.PROJECTS; const feat = p[0]; // Museum of the Future const side1 = p[1]; const side2 = p[2]; const row2 = [p[3], p[6], p[10]]; return (
Projects

Where the
surfaces live.

Thirty-seven named projects across hospitality, residential, civic and retail — from the Museum of the Future to Atlantis The Royal. Each case study reads space → materials used → outcome.

openProject(feat)}>
{feat.name}
{feat.name}
{feat.location} · {feat.year}
{feat.sector}
{[side1, side2].map(pr => (
openProject(pr)}>
{pr.name}
{pr.name}
{pr.location} · {pr.year}
{pr.sector}
))}
{row2.map(pr => (
openProject(pr)}>
{pr.name}
{pr.name}
{pr.location} · {pr.year}
{pr.sector}
))}
); } // ====== BRAND STRIP ====== function BrandStrip({ setPage }) { const brands = window.SENSI_DATA.BRANDS.filter(b => b.svg).slice(0, 7); return (
The Brand Library

40+ houses we represent.

European and international design houses — Italian porcelain, Milanese bath culture, Swiss ceramics. A navigable library, by category, with the aesthetics and applications of each.

{brands.map(b => (
setPage('brands')}> {b.name}
))}
); } // ====== STUDIO ====== function StudioBlock({ openConsult, setPage }) { const steps = window.SENSI_DATA.STUDIO_STEPS; return (
SENSI Studio

Design rooted in substance.
Spaces defined by soul.

An integrated interior design service for residential and commercial spaces. A five-stage engagement — consultation through specification — built on the conviction that surfaces are the substance of a room, not its finish.

{steps.map(s => (
{s.n}

{s.title}

{s.body}

))}

"Timeless beauty, intelligent functionality, storytelling through design. Every detail intentional, every material chosen with purpose."

SENSI Studio · Direct
+971 52 126 4659
studio@sensi.ae · Mon–Fri 09:00–18:00
); } // ====== SHOWROOM ====== function ShowroomBlock({ openConsult }) { return (
SENSI showroom
The Showroom

Visit the boutique
showroom at d3.

Surfaces in person — the only way to choose them. Specify on the bench with the team, or let SENSI Studio drive the engagement.

Address
Building 4, Office 101A
Dubai Design District (d3)
Hours
Monday – Friday
08:00 – 18:00
Telephone
+971 4 447 4634
Email
info@sensi.ae
); } window.SENSI_PAGES_1 = { TopBar, Hero, Origin, DualVP, MaterialsTeaser, ProjectsTeaser, BrandStrip, StudioBlock, ShowroomBlock };