// 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 · 2026
13 dentists · 5 languages
{/* TOUR THE CLINIC — image strip */}
A clinic that looks like the work it does.>}
/>
01 · RECEPTION
21F · Burjuman
02 · CHAIR
CBCT-equipped
03 · BUSINESS BAY
sister premises
04 · ENDO
microscope-assisted
Hero & interior shots from Trio Dental Center. Commission a Burjuman-specific 21st-floor view for production.
{/* REVIEWS — visual quote */}
{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
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 (