// Top navigation + Hero const T_NAV = { en: { services: 'Services', jurisdictions: 'Jurisdictions', cost: 'Cost estimator', resources: 'Resources', about: 'About', book: 'Book a free consultation' }, ar: { services: 'الخدمات', jurisdictions: 'المناطق', cost: 'تقدير التكلفة', resources: 'دليل المعرفة', about: 'من نحن', book: 'احجز استشارة مجانية' } }; const Nav = ({ lang, onLang }) => { const [scrolled, setScrolled] = useState(false); useEffect(() => { const f = () => setScrolled(window.scrollY > 8); window.addEventListener('scroll', f, { passive: true }); f(); return () => window.removeEventListener('scroll', f); }, []); const t = T_NAV[lang]; return ( ); }; // Hero const T_HERO = { en: { eyebrow: 'Trusted business setup partners — Bay Square, Dubai', headlineA: 'Business setup in Dubai,', headlineB: 'made simple.', body: "Company formation across Mainland, 15+ Free Zones and Offshore — with visas, banking, tax and compliance handled end-to-end by one partner. Plain answers to the questions that keep founders awake at 2am.", primary: 'Book a free consultation', secondary: 'Estimate my setup cost', tag1: 'Indicative cost in 4 questions', tag2: 'Exact quote at consultation', factsLine: 'Mainland · 15+ free zones · Offshore — one partner from licence to bank to visas.' }, ar: { eyebrow: 'شركاء موثوقون لتأسيس الأعمال — بيز سكوير، دبي', headlineA: 'تأسيس الأعمال في دبي،', headlineB: 'بطريقة مبسطة.', body: 'تأسيس الشركات في البر الرئيسي وأكثر من 15 منطقة حرة وأوفشور — مع التأشيرات والحسابات المصرفية والضرائب والامتثال من شريك واحد.', primary: 'احجز استشارة مجانية', secondary: 'احسب التكلفة التقديرية', tag1: 'تقدير في 4 أسئلة', tag2: 'عرض دقيق عند الاستشارة', factsLine: 'البر الرئيسي · أكثر من 15 منطقة حرة · أوفشور.' } }; const Hero = ({ lang, variant = 'split' }) => { const t = T_HERO[lang]; return (
{t.eyebrow}

{t.headlineA}
{t.headlineB}

{t.body}

{t.primary} {t.secondary}
{t.tag1} · {t.tag2}
{variant !== 'centered' && (
{/* Floating trust card */}
{[0,1,2,3,4].map(i => )}
4.7 · 1,500+ Google reviews
via Trustindex · May 2026
{/* Decorative second image */}
)}
{/* Trust strip */}
{[ { k: 'Since', v: '2019', n: '6+ years advising founders' }, { k: 'Rating', v: '4.7★', n: '1,500+ Google reviews (May 2026)' }, { k: 'Coverage', v: 'Mainland · Free Zone · Offshore', n: '15+ free zones across the UAE' }, { k: 'Reach', v: 'UAE · KSA · UK · India', n: 'Group entities, kept separate' } ].map((s, i) => (
{s.k}
{s.v}
{s.n}
))}
); }; Object.assign(window, { Nav, Hero });