57 lines
3.4 KiB
JavaScript
57 lines
3.4 KiB
JavaScript
import {Box, Button, Chip, Container, Grid, Link, Typography} from "@mui/material";
|
||
import {useTranslations} from "next-intl";
|
||
import DownloadIcon from '@mui/icons-material/Download';
|
||
|
||
const LoanCondition = () => {
|
||
const t = useTranslations();
|
||
return (
|
||
<Box>
|
||
<Container sx={{py: 3}} maxWidth="xl">
|
||
<Grid container>
|
||
<Grid item xs={12} md={8}>
|
||
<Box sx={{padding: 3}}>
|
||
<Typography variant={'h5'}>
|
||
قوانین دریافت وام
|
||
</Typography>
|
||
<Grid item sx={{my: 2}}>
|
||
<Chip sx={{m: 1}}
|
||
label="1. ارایه کارت هوشمند ناوگان فعال توسط مالک ناوگان (صاحب سند و پلاک)"/>
|
||
<Chip sx={{m: 1}} label="2. ارایه حداقل 120 صورت وضعیت در سال 1401 و 1402"/>
|
||
<Chip sx={{m: 1}} label="3. نداشتن بدهی جاری"/>
|
||
</Grid>
|
||
<Typography sx={{lineHeight: 2.4}} textAlign={'justify'}>
|
||
این وام برای اتوبوس تا سقف <Typography sx={{color: "secondary.main"}}
|
||
variant={'h6'}
|
||
fontWeight={'bold'}
|
||
component={'span'}>700</Typography> میلیون تومان
|
||
و برای مینی بوس تا سقف <Typography sx={{color: "secondary.main"}}
|
||
variant={'h6'}
|
||
fontWeight={'bold'}
|
||
component={'span'}>200</Typography> میلیون تومان در
|
||
نظر گرفته شده است. مبلغ نهایی با توجه به امتیاز و روند کارشناسی در ادارات مربوطه مشخص
|
||
میشود. برای اطلاع از شرایط کامل این وام فایل پیوست را مطالعه بفرمایید.
|
||
</Typography>
|
||
</Box>
|
||
</Grid>
|
||
<Grid sx={{display: 'flex', alignItems: "center", justifyContent: "center"}} item xs={12} md={4}>
|
||
<Box>
|
||
<Button variant="contained" startIcon={<DownloadIcon/>}>
|
||
<Link
|
||
variant="subtitle1"
|
||
sx={{padding: 1}}
|
||
color={'white'}
|
||
download
|
||
underline="none"
|
||
href={'/files/راهنما.pdf'}
|
||
>
|
||
دریافت فایل های راهنما
|
||
</Link>
|
||
</Button>
|
||
</Box>
|
||
</Grid>
|
||
</Grid>
|
||
</Container>
|
||
</Box>
|
||
)
|
||
}
|
||
export default LoanCondition |