LFFE-22 add witel logo

This commit is contained in:
2023-11-13 16:16:08 +03:30
parent a4c4e83ad9
commit 2980ae4ab6
4 changed files with 27 additions and 6 deletions

View File

@@ -7,5 +7,6 @@ NEXT_PUBLIC_PRIMARY_MAIN = "#084070"
NEXT_PUBLIC_SECONDARY_MAIN = "#FF4E00"
NEXT_PUBLIC_BASE_URL = "https://loan.witel.ir"
NEXT_PUBLIC_POWERED_BY_URL = "https://witel.ir"
NODE_ENV = "development"

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 KiB

View File

@@ -3,6 +3,7 @@
"app_short_name": "سامانه تسهیلات",
"dashboard": "داشبورد",
"first_page": "خوش آمدید",
"powered_by_witel": "توسعه یافته توسط وایتل",
"login": "ورود",
"pending": "درحال اجرا...",
"login_user_panel": "ورود به پنل کاربران",

View File

@@ -1,20 +1,39 @@
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(
<Box sx={{backgroundColor : 'black', color : 'white'}}>
<Container sx={{py : 3}} maxWidth="xl">
<Grid container sx={{py : 2}}>
<Grid item xs={12} md={8}>
<Button disabled startIcon={<img src='/icons/favicon.png' alt="Your Alt Text" />}>
<Typography color={'white'}>کلیه حقوق محفوظ و متعلق به سازمان راهداری و حمل و نقل جاده ای می باشد</Typography>
<Button disabled startIcon={<img src='/icons/logoLandingPage.png' width={50} alt="Your Alt Text" />}>
<Typography color={'white'}>کلیه حقوق محفوظ و متعلق به شرکت ویرا ارتباطات یکتا تلفن می باشد</Typography>
</Button>
</Grid>
<Grid item xs={12} md={4}>
<Stack alignItems='center' justifyItems='center'>
<Typography>آخرین به روزرسانی</Typography>
<Typography>1402/08/22</Typography>
<Stack direction="row" alignItems="center" justifyContent="center">
<LinkRouting
sx={{margin: 0.5, fontSize: "20px", color : "white"}}
href={process.env.NEXT_PUBLIC_POWERED_BY_URL}
target="_blank"
underline="hover"
>
{t("powered_by_witel")}
</LinkRouting>
</Stack>
<Stack direction="row" alignItems="center" justifyContent="center">
<Typography variant={"caption"}
sx={{
color: 'white',
fontFamily: 'Arial',
fontWeight: 'bold'
}}
>
v{process.env.NEXT_PUBLIC_API_VERSION}
</Typography>
</Stack>
</Grid>
</Grid>