/* global React, Ic, Wordmark, PlaceholderImg, useT */ const { useState } = React; function FAQ() { const { t } = useT(); const [open, setOpen] = useState(0); const faqs = [ { q: t("faq.q1"), a: t("faq.a1") }, { q: t("faq.q2"), a: t("faq.a2") }, { q: t("faq.q3"), a: t("faq.a3") }, { q: t("faq.q4"), a: t("faq.a4") }, { q: t("faq.q5"), a: t("faq.a5") }, { q: t("faq.q6"), a: t("faq.a6") }, { q: t("faq.q7"), a: t("faq.a7") }, ]; return (
{t("faq.eyebrow")}

{t("faq.title_l1")}
{t("faq.title_l2")}

{t("faq.lead")}

{faqs.map((f, i) => (
{f.a}
))}
); } function BigMarkSection() { const { t } = useT(); return (
{t("mark.kicker1")} {t("mark.kicker2")}
RIGA·LOCAL·HOST
{t("mark.kicker3")} {t("mark.kicker4")}
); } function Footer() { const { t } = useT(); return ( ); } Object.assign(window, { FAQ, BigMarkSection, Footer });