/* global React, Reveal, PhiMark, ArchPattern, TREATMENT_DATA */ // ======================================================================= // CONTACT PAGE // ======================================================================= function ContactPage({ locale, onBook }) { const ar = locale === 'ar'; return (
φ   {ar ? 'تواصل' : 'Contact'}

{ar ? <>إبدأ بمحادثة هادئة. : <>Begin with a conversation.}

{[ ['Telephone', '+971 4 456 2024', 'tel:+97144562024'], ['WhatsApp', '+971 58 685 8562', 'https://wa.me/971586858562'], ['Email', 'dubai@ouronyx.com', 'mailto:dubai@ouronyx.com'], ['Address', 'Unit C201, The Opus, Business Bay', null], ].map(([k, v, href]) => (
{k}
{href ? ( {v} ) : ( {v} )}
))}
{/* Inline form */}
{ar ? 'نموذج سريع' : 'Quick enquiry'}

{ar ? <>أو ابعث برسالة قصیرة. : <>Or send a short message.}

{ar ? 'لا نطلب أي بیانات طبیة في هذه المرحلة. سنرد خلال یوم عمل واحد لترتیب استشارة مع طبیب.' : 'We do not ask for medical detail at this stage. We will reply within one working day to arrange a doctor-led consultation.'}

); } function QuickForm({ ar }) { const [sent, setSent] = React.useState(false); if (sent) { return (

{ar ? 'شكراً' : 'Thank you'}

{ar ? 'سنتواصل خلال یوم عمل واحد.' : 'We will reply within one working day.'}

); } return (
{ e.preventDefault(); setSent(true); }} style={{ background: 'var(--bone)', padding: 40, border: '1px solid var(--line)', display: 'flex', flexDirection: 'column', gap: 24 }}>