Files
user-front/src/components/first/LoanCondition.jsx
AmirHossein Mahmoodi 03ed807eaf use witel webapp builder
2023-12-10 15:08:10 +03:30

56 lines
3.3 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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">
<Typography sx={{my: 3}} variant={'h3'}>
تخصیص وام
</Typography>
<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 . فقط به زوجین ایرانی تعلق می‌گیرد"/>
<Chip sx={{m: 1}} label="3 . فقط به زوجین ایرانی تعلق می‌گیرد"/>
<Chip sx={{m: 1}} label="4 . فقط به زوجین ایرانی تعلق می‌گیرد"/>
</Grid>
<Typography textAlign={'justify'}> این یکی از محبوبترین انواع وام در ایران است. دلیل این
محبوبیت سرعت آن در پرداخت و سود بسیار پایین آن است.
تنها یک شرط برای اخذ این وام وجود دارد و آن این است که باید به تازگی ازدواج کرده باشید.
همچنین فقط یک بار از این وام میتوانید استفاده کنید. یعنی این وام فقط یک بار به هر فرد
تعلق میگیرد.
محل تامین بودجه آن حسابهای قرض الحسنهایست که افراد در بانکها باز میکنند و مرجع اصلی
آرائه آن، بانک مرکزی است.
</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={'/dist/images/modalrms/Asset%2010.apk'}
>
دریافت فایل های راهنما
</Link>
</Button>
</Box>
</Grid>
</Grid>
</Container>
</Box>
)
}
export default LoanCondition