// faq.jsx — bubble accordions const { useState: __fs } = React; function FAQ({ t }) { const [open, setOpen] = __fs(0); return (
{t.faq_eye}

{t.faq_title_1}
{t.faq_title_2}

{t.faqs.map((f, i) => (

{f.a}

))}
); } Object.assign(window, { FAQ });