import { useTranslation } from "react-i18next"; export const Footer = () => { const { t } = useTranslation(); return (
{t("powered_by")}
); };