// Home page — visual-forward edition function DSCHomePage({ navigate }) { const d = window.DSC_DATA; return (
{/* RATING BADGES — replaces plain strip with stylized arcs */}
{/* FEATURED TREATMENTS — 3 big image cards */}
Three things we are known for.} link={{ href: "#/treatments", label: "All treatments", onClick: (e) => { e.preventDefault(); navigate("treatments"); } }} />
{/* TREATMENTS GRID — 12 categories, compact */}
Twelve disciplines, one team.} />
{d.treatments.map((t) => ( { e.preventDefault(); navigate("treatments", { slug: t.slug }); }} /> ))}
{/* TEAM — editorial spread */}
The team at Dubai Sky Clinic by Trio Dental Center
The team · 2026 13 dentists · 5 languages
The people behind the chair

A clinic founded by two — staffed by thirteen.

Dr. Maximilian Riewer (DDS Germany) and Anna Maria Silfverskiöld opened the practice in 2006. Today the team works in English, German, Arabic, French and more — each dentist a specialist, none a generalist in disguise.

{ e.preventDefault(); navigate("dentists"); }} style={{marginTop: "1.5rem"}}> Meet all 13 dentists →
{/* TOUR THE CLINIC — image strip */}
A clinic that looks like the work it does.} />
Reception
01 · RECEPTION 21F · Burjuman
Treatment room
02 · CHAIR CBCT-equipped
Corridor
03 · BUSINESS BAY sister premises
Endodontics
04 · ENDO microscope-assisted

Hero & interior shots from Trio Dental Center. Commission a Burjuman-specific 21st-floor view for production.

{/* REVIEWS — visual quote */}
On Doctify
40 verified · 107 expertise areas
View on Doctify →
{d.reviews.slice(0, 3).map((r, i) => (

{r.quote}

{r.attribution} · {r.treatment} {r.date}
))}
{/* FINANCING — visual */}
Financing

Higher-ticket treatment. Paid in four.

Implants, smile makeovers and aligners are eligible for Tabby's pay-in-four. Quoted in writing at consultation — never on the internet.

EXAMPLE — IMPLANT CASE AED ÷ 4 ≈ AED — per month
Tabby powered by Tabby · subject to approval

No invented prices — quoted in clinic.

{/* BRANCHES — image backgrounds */}
Two premises. One operator.} />
{d.branches.map((b, i) => ( ))}
); } /* ---- Rating arc badge ---- */ function DSCRatingBadge({ score, max, count, platform, caption, accent }) { return (
{score} {max && /{max}}
{platform}
{caption}
); } /* ---- Rating ring (SVG) ---- */ function DSCRatingRing({ score = 4.99, max = 5 }) { const pct = score / max; const radius = 88; const circ = 2 * Math.PI * radius; const offset = circ * (1 - pct); return ( {score.toFixed(2)} OUT OF {max} ); } /* ---- Featured treatment card ---- */ function DSCFeaturedCard({ slug, tag, title, subtitle, image, dentist, navigate }) { return ( { e.preventDefault(); navigate("treatments", { slug }); }}>
{tag.toUpperCase()}

{subtitle}

{dentist}

); } /* ---- Branch card ---- */ function DSCBranchCard({ branch, image, navigate }) { const b = branch; return (
{b.brand}
{b.flagship ? "Flagship" : "Sister premises"}

{b.brand}

{b.label}
{b.address1}
{b.address2}
{b.address3}
{b.hours.map((h, i) =>
{h.d} · {h.t}
)}
{b.phone} Directions { e.preventDefault(); navigate("book", { branch: b.id }); }}>Book here →
); } window.DSCHomePage = DSCHomePage; window.DSCRatingBadge = DSCRatingBadge; window.DSCRatingRing = DSCRatingRing; window.DSCFeaturedCard = DSCFeaturedCard; window.DSCBranchCard = DSCBranchCard;