/* eslint-disable */ /* NEX Consultants — page views: Home, Services, Jurisdictions */ function Home({ setRoute, onConsult, onOpenService }) { return (
); } function Hero({ onConsult, setRoute }) { return (
Your Business Gateway to the Middle East

Company formation & tax-advisory experts in Dubai.

A chartered-accountant-led, boutique consultancy guiding founders and established firms through every UAE structure — Mainland, Free Zone, Offshore and Foreign Branch.

End-to-end across formation, visas, banking, accounting & tax.
Senior partners on every engagement — not a setup factory.
Specialist registered-agent capability for JAFZA Offshore.
Dubai HQ Dubai · Sheikh Zayed Road
John Varghese, CEO & Partner John Varghese · CEO
Hisham Ali Mohamed Taher, Chairman Hisham Taher · Chairman
); } function JurisdictionLogos() { return (
Authorities & Free Zones DED DMCC JAFZA UAQ FTZ
); } function ServicesPreview({ setRoute, onOpenService }) { const top8 = SERVICES.slice(0, 8); return (
Services

End-to-end. From licence to ledger.

Formation handled by the same team that runs your accounting, VAT, corporate tax and PRO. One relationship; chartered-accountant depth across the lifecycle.

{top8.map((s, i) => (
onOpenService(s)}>
{String(i + 1).padStart(2, "0")} · {s.cat}

{s.title}

{s.lede}

How it works
))}
); } function ComparisonTeaser({ setRoute }) { return (
Jurisdictions

Mainland, Free Zone, Offshore, Branch — qualitatively compared.

Government and free-zone fees change — so this comparison stays qualitative. We discuss indicative ranges privately in your consultation.

); } function CompareTable({ rows, cols }) { return (
Attribute
{cols.map(c =>
{c}
)}
{rows.map(r => (
{r.attr}
{r.values.map((v, i) => (
{v}
))}
))}
); } function ComplianceFeature({ setRoute }) { const steps = [ "Map every entity's compliance obligations.", "UBO disclosures with the relevant authority.", "ESR notifications and reports where applicable.", "AML registration, policies and goAML.", "FTA Corporate Tax and VAT registration.", "Annual financial statements + audit submission.", "Renewals: licence, establishment, immigration.", "Ongoing changes — share transfers, MoA, signatories.", ]; return (
Authority article

8 steps to fulfil corporate compliance in the UAE.

UBO, ESR, AML, FTA — the obligations that follow a UAE company are not optional, and the penalty bands are real. This is the framework we run for every client.

{steps.map((s, i) => (
{i + 1} {s}
))}
); } function LeadershipTeaser({ setRoute }) { return (
Leadership

Senior, credentialled, named.

Boutique means our principals run your engagement. CPA, ICAI, ex-Big-4, ex-UAE Ministry of Finance — the bench is genuinely senior.

{TEAM.slice(0,3).map(m => (
{m.role}

{m.name}

{m.creds}

))}
); } function ConsultBand({ onConsult }) { return (

Let's get started.

Request your free quote today — one call, senior partner, no obligation.

+971 4 388 7577
); } /* ════════════════════════════════════════════════════════════════ */ /* SERVICES VIEW */ /* ════════════════════════════════════════════════════════════════ */ function ServicesView({ onOpenService }) { const [filter, setFilter] = React.useState("All"); const cats = ["All", ...new Set(SERVICES.map(s => s.cat))]; const filtered = filter === "All" ? SERVICES : SERVICES.filter(s => s.cat === filter); return (
Services

Twelve services. One senior team.

Formation, people, banking, finance, tax, governance and advisory — delivered as a single relationship. Click any service to see the step-by-step journey we run.

{cats.map(c => ( ))}
{filtered.map((s, i) => (
onOpenService(s)}>
{String(i + 1).padStart(2, "0")} · {s.cat}

{s.title}

{s.lede}

How it works
))}
); } function ServiceDetail({ service, onConsult }) { if (!service) return null; return ( <>
{service.cat}

{service.title}

{service.lede}

How the engagement runs
{service.journey.map(([k, v], i) => (
{i + 1}
{k} {v}
))}
Note on pricing.{" "} Government and free-zone fees change frequently. We share indicative ranges in your consultation — never a fixed quote without scope confirmation.
WhatsApp the team
); } /* ════════════════════════════════════════════════════════════════ */ /* JURISDICTIONS VIEW */ /* ════════════════════════════════════════════════════════════════ */ function JurisdictionsView({ setRoute }) { const [filter, setFilter] = React.useState("All"); const kinds = ["All", "Mainland", "Free Zone", "Offshore", "Branch"]; const filtered = filter === "All" ? JURISDICTIONS : JURISDICTIONS.filter(j => j.kind === filter); return (
Jurisdictions

The right structure changes everything.

Mainland for unrestricted UAE market access. Free Zones for sector fit and ownership. Offshore for holding and asset protection. Branch for established multinationals. Compare qualitatively, then talk to a partner about indicative cost.

Qualitative comparison

Qualitative summary — every engagement is structure-specific. Confirmed on consultation.

Per-zone detail

{kinds.map(c => ( ))}
{filtered.map(j => (
{j.logo ? {j.name}/ :
{j.kind}
}
{j.kind}

{j.name}

{j.suit}

    {j.benefits.map(b =>
  • {b}
  • )}
))}
); } Object.assign(window, { Home, ServicesView, ServiceDetail, JurisdictionsView, CompareTable, });