LFFE-22 structured landing page
This commit is contained in:
42
src/components/first/LoanCondition.jsx
Normal file
42
src/components/first/LoanCondition.jsx
Normal file
@@ -0,0 +1,42 @@
|
||||
import {Box, Container, Grid, Typography} from "@mui/material";
|
||||
import {useTranslations} from "next-intl";
|
||||
|
||||
const LoanCondition = () => {
|
||||
const t = useTranslations();
|
||||
return(
|
||||
<Box>
|
||||
<Container sx={{py : 3}} maxWidth="xl">
|
||||
<Typography sx={{my : 3}} variant={'h3'}>
|
||||
تخصیص وام
|
||||
</Typography>
|
||||
<Grid container spacing={2} sx={{py : 2}}>
|
||||
<Grid item={10}>
|
||||
<Typography variant={'h5'}>
|
||||
قوانین دریافت وام
|
||||
</Typography>
|
||||
<ul>
|
||||
<li>
|
||||
فقط به زوجین ایرانی تعلق میگیرد.
|
||||
</li>
|
||||
<li>
|
||||
به زوجین ایرانی تعلق میگیرد.
|
||||
</li>
|
||||
<li>
|
||||
فقط به زوجین ایرانی تعلق میگیرد.
|
||||
</li>
|
||||
<li>
|
||||
فقط به زوجین ایرانی تعلق میگیرد.
|
||||
</li>
|
||||
</ul>
|
||||
</Grid>
|
||||
<Grid item={2}>
|
||||
<Typography>
|
||||
فایل ضمیمه
|
||||
</Typography>
|
||||
</Grid>
|
||||
</Grid>
|
||||
</Container>
|
||||
</Box>
|
||||
)
|
||||
}
|
||||
export default LoanCondition
|
||||
Reference in New Issue
Block a user