import "./GetStartedFooter.scss"; import PoweredBy from "./PoweredBy"; import { useI18n } from "../composables"; export default function GetStartedFooter() { const { t, te } = useI18n(); return (
{te("footer") &&
{t("footer")}
}
); }