import { useTranslation } from "react-i18next"; export function About() { const { t } = useTranslation(); return (

{t("about_title")}

{t("about_desc")}

{t("proto_title")}

{t("proto_desc")}

{t("zk_title")}

{t("zk_desc")}

{t("version_info")}
{t("footer_text")}
); }