import {Box, Button, Container, Grid, Stack, Typography} from "@mui/material"; import LinkRouting from "@/core/components/LinkRouting"; import {useTranslations} from "next-intl"; const FooterDetails = () => { const t = useTranslations(); return( {t("powered_by_witel")} v{process.env.NEXT_PUBLIC_API_VERSION} ) } export default FooterDetails