// Trust strip + Leadership + Resources (GuideHub) + Reviews const LEADERS = [ { name: 'Charlie Patel', role: 'Founder & Chairman', img: 'media/leader-charlie.webp', note: 'Founded Decisive Zone in 2019 with a single brief: make UAE company setup honest and end-to-end.' }, { name: 'Dyuti Parruck', role: 'CEO & Partner', img: 'media/leader-dyuti.webp', note: 'Leads the consultancy. Background in cross-border corporate services across the GCC.' }, { name: 'Abdul Manan Shaikh', role: 'Managing Partner', img: 'media/leader-abdul.webp', note: 'Runs operations across mainland, free zones and offshore — and the PRO desk.' } ]; const TEAM = [ { name: 'Neha Thomas', role: 'Chief Strategy Officer', img: 'media/team-neha.webp' }, { name: 'Richard Cooke', role: 'Chief Operating Officer', img: 'media/team-richard.webp' }, { name: 'Dipesh Rathod', role: 'Director of Operations', img: 'media/team-dipesh.webp' } ]; const Leadership = ({ lang }) => (
Since 2019 — Bay Square, Dubai

A team that's set up
thousands of UAE companies.

Decisive Zone was founded in 2019 by Charlie Patel with a single belief: business setup advice in the UAE should be transparent, end-to-end and ferociously practical. Six years on, the team handles licensing, jurisdiction, visas, banking, tax and compliance under one roof in Bay Square — and quietly looks after the renewals long after the licence is live.

Visit our Bay Square HQ
{LEADERS.map((p, i) => (
{p.name}
0{i + 1}

{p.name}

{p.role}

{p.note}

))}
{/* Wider team row */}

And the people who actually deliver it

Full team across operations, sales, accounts and HR — 50+ people.
{TEAM.map(p => (
{p.name}
{p.name}
{p.role}
))}
); // Guides / Resources const GUIDES = [ { tag: 'Cost guide', title: 'How much does it cost to set up a business in Dubai?', read: '9 min read', body: 'A plain-English breakdown of mainland, free-zone and offshore cost drivers — and the bits no one tells you about (PRO, share capital, activity approvals).' }, { tag: 'Jurisdictions', title: 'IFZA vs DMCC vs Meydan — which free zone should you pick?', read: '12 min read', body: 'Side-by-side on visa quotas, activity lists, banking pull and renewal economics. Updated for 2026.' }, { tag: 'Tax', title: 'UAE corporate tax: a SME founder\'s checklist', read: '7 min read', body: 'What to register for, what to file, what to ignore. The 9% rate, exemptions and the small-business relief.' } ]; const Resources = () => (
Guide hub

Answers to the questions
founders ask first.

Browse all guides
{GUIDES.map((g, i) => (
{ e.currentTarget.style.borderColor = 'var(--ink)'; }} onMouseLeave={e => { e.currentTarget.style.borderColor = 'var(--line)'; }}>
{g.tag} {g.read}

{g.title}

{g.body}

Read guide
))}
); // Reviews widget (attributed) const Reviews = () => (
{[0,1,2,3,4].map(i => )}
4.7/5
1,500+ Google reviews

"Reviews aggregated by Trustindex from Google, May 2026. We embed the live widget so the rating updates itself — never a hardcoded number."

Verified · auto-updating · cited
Read on Google
); Object.assign(window, { Leadership, Resources, Reviews });