Feature/update api

This commit is contained in:
2024-11-05 07:09:13 +00:00
committed by AmirHossein Mahmoodi
parent 56196f33c7
commit b64a1c93e9
83 changed files with 4066 additions and 3123 deletions

View File

@@ -1,18 +1,18 @@
import {Button, Typography} from "@mui/material";
import {useTranslations} from "next-intl";
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";
import { CenterLayout, FullPageLayout, NextLinkComposed } from "@witel/webapp-builder";
const ServerErrorComponent = () => {
const t = useTranslations();
return (
<>
<TitlePage text="Titles.title_custom_500"/>
<FullPageLayout sx={{p: 1}}>
<TitlePage text="Titles.title_custom_500" />
<FullPageLayout sx={{ p: 1 }}>
<CenterLayout spacing={3}>
<Svg500 width={300} height={200}/>
<Svg500 width={300} height={200} />
<Typography margin={2} variant="h6" textAlign="center">
{t("ErrorPage.custom_500")}
</Typography>
@@ -23,8 +23,7 @@ const ServerErrorComponent = () => {
pathname: "/",
}}
>
{t("ErrorPage.link_routing_back_to")}{" "}
{t("ErrorPage.link_routing_main_page")}
{t("ErrorPage.link_routing_back_to")} {t("ErrorPage.link_routing_main_page")}
</Button>
</CenterLayout>
</FullPageLayout>