/* global React, Reveal, PhiMark, ArchPattern */ // ======================================================================= // DUBAI LOCATION PAGE // ======================================================================= function LocationPage({ locale, onBook }) { const ar = locale === 'ar'; return (
{/* Hero — Opus exterior */}
The Opus by Omniyat
φ   {ar ? 'الموقع' : 'The Location'}

{ar ? <>برج أوبس
الخلیج التجاري : <>The Opus,
Business Bay}

{[ ['Architect', 'Zaha Hadid'], ['Developer', 'Omniyat'], ['Unit', 'C201'], ['Opened', '2022'], ].map(([k, v]) => (
{k}
{v}
))}
{/* Architectural intro */}

{ar ? <>هندسة للهدوء. : <>An architecture for stillness.}

{ar ? 'تشغل العیادة الوحدة C201 من أوبس، أحد آخر مشاریع الراحلة زها حدید في دبي. اخترنا هذا المبنى لأن منحنیاته توفر الهدوء قبل أي إجراء — ضوء ناعم، ممرات منحنیة، أسطح حجریة دافئة، ومدخل خاص یحفظ الخصوصیة منذ الوصول.' : 'Ouronyx Dubai occupies Unit C201 inside The Opus — one of the late Zaha Hadid’s last completed projects in the city. The building was chosen for the same reason a treatment plan is: its curves create stillness before anything else begins. Soft daylight, curved corridors, warm stone surfaces, and a private guest exit that protects discretion from the moment of arrival.'}

{/* Interior gallery — editorial 3-col */}
{[ { src: 'media/interior-sofa-01.webp', col: 'span 7', aspect: '4 / 3', label: 'The lounge · olive velvet' }, { src: 'media/interior-or-brand-01.webp', col: 'span 5', aspect: '4 / 3', label: 'Brand mark in stone' }, { src: 'media/interior-chair-01.webp', col: 'span 4', aspect: '3 / 4', label: 'Consultation chair' }, { src: 'media/about-dubai-01.webp', col: 'span 8', aspect: '3 / 4', label: 'Atrium' }, ].map((g, i) => (
{g.label}
{String(i + 1).padStart(2, '0')} · {g.label}
))}
{/* Contact + map block */}
{/* Details */}
{ar ? 'التفاصيل' : 'Practical detail'}

{ar ? <>زیارتك إلى أوبس. : <>Visiting The Opus.}

{[ ['Address', <>The Opus by Omniyat
Unit C201, Al A’amal Street
Business Bay, Dubai, UAE], ['Telephone', +971 4 456 2024], ['WhatsApp', +971 58 685 8562], ['Email', dubai@ouronyx.com], ['Hours', By appointment · confirm with the clinic], ['Metro', Business Bay Station · Red Line], ['Parking', Valet at The Opus · to confirm], ].map(([k, v]) => (
{k}
{v}
))}
{/* Map placeholder — embedded later with verified coords */}
); } // === Architectural map placeholder === function MapPlaceholder() { return (
{/* Stylised street grid */} {/* The Opus footprint sketch */} {/* Opus iconic curved-twin-tower mark */} {/* Cross-roads label */} AL A’AMAL STREET BUSINESS BAY · DOWNTOWN ADJ.
φ OURONYX DUBAI
25.18° N · 55.27° E (approximate)
STYLISED MAP · EXACT COORDINATES TO VERIFY
); } Object.assign(window, { LocationPage });