import { Button, Typography } from "@mui/material";
import { useTranslations } from "next-intl";
import TitlePage from "@/core/components/TitlePage";
import Svg500 from "@/core/components/svgs/Svg500";
import { CenterLayout, FullPageLayout, NextLinkComposed } from "@witel/webapp-builder";
const ServerErrorComponent = () => {
const t = useTranslations();
return (
<>
{t("ErrorPage.custom_500")}
>
);
};
export default ServerErrorComponent;