import LinkRouting, {NextLinkComposed} from "@/core/components/LinkRouting"; import CenterLayout from "@/layouts/CenterLayout"; import FullPageLayout from "@/layouts/FullPageLayout"; import useUser from "@/lib/app/hooks/useUser"; import {Button, Stack, Typography} from "@mui/material"; import {useTranslations} from "next-intl"; import SvgDashboard from "@/core/components/svgs/SvgDashboard"; const FirstComponent = () => { const t = useTranslations(); const {isAuth} = useUser(); return ( {t("app_name")} v{process.env.NEXT_PUBLIC_API_VERSION} {t("powered_by_witel")} ); }; export default FirstComponent;