/* global React, DENTISTS, IconCheck, IconLang, IconArrow */ function Dentists({ onBook }) { return (
03 · Your dentists

Two dentists.
One relationship that lasts years.

Many Empire patients have stayed with Dr Ammar for half a decade or more. There are no rotating locums here — you’ll see the same dentist at every visit, with a specialist orthodontist on hand when you need one.

{DENTISTS.map(d => (
{d.photo ? (
{d.name}
) : (
Portrait pending
client to supply
hi-res headshot
)}
{d.role}

{d.name}

{d.dha} · Verified

{d.bio}

    {d.credentials.map((c, i) => (
  • {c}
  • ))}
{d.langs.map(l => ( {l} ))}
))}
Looking for a treatment-specific consultation?
); } window.Dentists = Dentists;