/* global React, SectionHead, I, LawyerCard, RANKINGS, SERVICES, INDUSTRIES, HUBS, PEOPLE, OFFICES, INSIGHTS, AWARDS */ const { useState: useStateP, useMemo: useMemoP } = React; // ─── Page banner ────────────────────────────────────────────────────── function PageBanner({ eyebrow, title, sub, dark }) { return (
{eyebrow}

{title}

{sub &&

{sub}

}
); } // ─── Expertise page ─────────────────────────────────────────────────── function ExpertisePage({ navigate, onEnquire, t }) { const [tab, setTab] = useStateP("services"); const tabs = { services: t.services, industries: t.industries, hubs: t.hubs }; const data = { services: SERVICES.map((s) => ({ name: s.name, slug: s.slug, flagship: s.flagship })), industries: INDUSTRIES.map((i) => ({ name: i })), hubs: HUBS.map((h) => ({ name: h })), }[tab]; // Mock practice blurbs (capability language only, no guarantees) const blurb = (name) => { const m = { "Arbitration & ADR": "Domestic and international arbitration before DIAC, DIFC-LCIA, ICC, LCIA and ad-hoc panels.", "Litigation": "Onshore litigation before the UAE Courts and onshore counterparts across the GCC.", "DIFC / ADGM Litigation": "Common-law dispute resolution before the DIFC Courts and ADGM.", "Corporate & M&A": "Cross-border M&A, joint ventures, restructurings and local IPOs.", "Banking & Finance": "Conventional and Islamic finance for sponsors, lenders and arrangers.", "Technology, Media & Telecoms": "Regulatory, contracting and data work for TMT operators and platforms.", }; return m[name] || "Capability across the firm's regional footprint — UAE, KSA, Oman, Lebanon and Iraq."; }; return (
{/* Tab control */}
{Object.entries(tabs).map(([k, v]) => ( ))}
{data.map((item, i) => ( ))}
{/* Rankings panel */}
{RANKINGS.map((r, i) => (
{r.tier} {r.jurisdiction}
{r.practice}
{r.directory}
))}
); } // ─── People directory page ──────────────────────────────────────────── function PeoplePage({ openLawyer, navigate, onEnquire, t }) { const [office, setOffice] = useStateP("All"); const [practice, setPractice] = useStateP("All"); const [role, setRole] = useStateP("All"); const offices = ["All", ...new Set(PEOPLE.map((p) => p.office))]; const practices = ["All", ...new Set(PEOPLE.flatMap((p) => p.practices))].sort(); const roles = ["All", "Senior Partner", "Managing Partner", "Partner", "Of Counsel", "Senior Associate"]; const filtered = useMemoP(() => PEOPLE.filter((p) => (office === "All" || p.office === office) && (practice === "All" || p.practices.includes(practice)) && (role === "All" || p.role === role) ), [office, practice, role]); const ChipRow = ({ label, value, set, options }) => (
{label}
{options.map((o) => ( ))}
); return (
Showing {String(filtered.length).padStart(2, "0")} of {String(PEOPLE.length).padStart(2, "0")}
{filtered.length === 0 ? (
No people match those filters.
) : (
{filtered.map((p) => )}
)}
); } // ─── Offices page ───────────────────────────────────────────────────── function OfficesPage({ onEnquire, t }) { return (
{OFFICES.map((o, i) => (
{`${o.city}
{o.headquarters ? "Headquarters · " : ""}{o.country}

{o.city}

{o.entity}

{o.address}

{o.note && (

{o.note}

)}
))}
); } // ─── Insights page ──────────────────────────────────────────────────── function InsightsPage({ navigate, t }) { const [cat, setCat] = useStateP("All"); const cats = ["All", ...new Set(INSIGHTS.map((i) => i.category))]; const filtered = INSIGHTS.filter((i) => cat === "All" || i.category === cat); const featured = filtered[0]; const rest = filtered.slice(1); return (
{cats.map((c) => ( ))}
{featured && (
Featured · {featured.category}

{featured.title}

{featured.authors[0]} {featured.date} · {featured.readTime}

{featured.excerpt}

Read briefing {featured.practice}
)}
{rest.map((ins, i) => (
{ins.category} {ins.date}

{ins.title}

{ins.excerpt}

{ins.authors[0]} {ins.readTime}
))}
); } // ─── About page ─────────────────────────────────────────────────────── function AboutPage({ onEnquire, navigate, t }) { return (
{/* Story */}
Heritage

Founded in Dubai. Built across the region.

In 2001 the firm opened in Dubai. Five years later, in 2006, it became the first local law firm to incorporate inside the Dubai International Financial Centre — a quiet first that has shaped the firm's posture ever since.

The Senior Partner, Dr. Ahmad Bin Hezeem, is a former Director General of the Dubai Courts and Vice Chairman of the Dubai International Arbitration Centre. The Managing Partner, Jimmy Haoula, helped develop Dubai's real-estate and Strata regulatory framework. The senior bench is, in our experience, the practice.

Eight offices now span the UAE, Saudi Arabia, Oman, Lebanon and Iraq. Across the network, the firm operates as a single partnership — local entity names where the law requires them, one practice in substance.

{/* Timeline */}
Timeline
{[ { y: 2001, e: "Firm founded in Dubai" }, { y: 2006, e: "First local firm in the DIFC" }, { y: 2021, e: "20 years in the Middle East" }, { y: 2024, e: "Rebrand to BSA LAW (Oct 8)" }, { y: 2026, e: "Eight offices, five countries" }, ].map((m, i) => (
0 ? 24 : 0 }}>
{m.y}
{m.e}
))}
{/* Values */}
What drives us
{["Client-Centricity", "Fairness", "Authenticity", "Responsibility", "Mutuality"].map((v, i) => (
{String(i + 1).padStart(2, "0")} {v}
))}
What defines us
{["Precursors", "Progressive", "Driven", "Bold", "Responsive"].map((v, i) => (
{String(i + 1).padStart(2, "0")} {v}
))}
{/* Awards */}
Awards · firm-supplied; attributed
{AWARDS.map((a, i) => (
{a.year} {a.name} {a.issuer}
))}
); } // ─── Contact page ───────────────────────────────────────────────────── function ContactPage({ onEnquire, t }) { return (
Enquiry form

Tell us about the matter.

); } // Compact, inline version of EnquiryForm without the modal chrome. function EnquiryFormInline({ t }) { const [submitted, setSubmitted] = useStateP(false); if (submitted) { return (
Received

Thank you.

Your enquiry has been routed. We typically respond within one business day.

); } return (
{ e.preventDefault(); setSubmitted(true); }} style={{ borderTop: "1px solid var(--line)", paddingTop: 32 }}>