// testimonials.jsx — bubble quote cards function Testimonials({ t }) { return (
{t.tst_eye}

{t.tst_title_1}{' '} {t.tst_title_2}

{t.testimonials.map((q, i) => { const colors = ['magenta', 'azure', 'lime']; const c = colors[i]; return (
"

{q.q}

{q.a}
{q.r}
); })}
); } Object.assign(window, { Testimonials });