import * as React from "react"; import PageLayout from "./page-layout"; import { Disclosure } from "@headlessui/react"; import Chat from "@/components/icons/chat.svg"; import Button from "@/components/button"; import { showCrispChat } from "./crisp-chat"; import { Trans, useTranslation } from "next-i18next"; const Support: React.VoidFunctionComponent = () => { const { t } = useTranslation("support"); return (

Support

General

}} /> }} /> ), }} /> {t("legacyPollsQuestion")} }} /> {t("contributeQuestion")} , }} />

Privacy & Security

{t("isMyDataSafeQuestion")} }} />

Self-hosting

{t("selfHostQuestion")} , }} /> {t("canYouHelpMeSetUpRalllyQuestion")} ), }} />

{t("supportContactTitle")}

, }} />

); }; export default Support;