Files
user-front/src/components/first/LoanDescription/index.jsx
2023-12-11 11:22:57 +03:30

46 lines
3.1 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
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, Container, Grid, Typography} from "@mui/material";
import {useTranslations} from "next-intl";
import TimeLineDetails from "@/components/first/LoanDescription/TimeLineDetails";
const LoanDescription = () => {
const t = useTranslations();
return (
<Box>
<Container sx={{py: 3}} maxWidth="xl">
<Typography sx={{my: 3}} variant={'h3'}>
وام نوسازی ناوگان
</Typography>
<Grid sx={{py: 2}} container spacing={2}>
<Grid item xs={12} md={7}>
<Typography sx={{lineHeight: 2.4}} variant={'subtitle1'} textAlign={'justify'}>
این وام براساس <Typography sx={{color: "secondary.main"}} variant={'h5'}
fontWeight={'bold'}
component={'span'}>تبصره 18</Typography> قانون بودجه می باشد. در
قانون
بودجه این تبصره اینگونه بیان شده است:
"به منظور رشد و پیشرفت استان های کشور از طریق ارتقای بهره وری و توسعه، سرمایه گذاری ها،
تکمیل واحدهای نیمه تمام و ظرفیت های خالی بنگاه های تولیدی بر پایه آمایش سرزمین و همچنین
حمایت از طرح(پروژهای) دانش بنیان و پیشران و بسط و عدالت سرزمینی منابع زیر جهت ایجاد و افزایش
تولید، اشتغال و کارآفرینی و ارتقای رشد اقتصادی اختصاص می یابد".
</Typography>
<Typography sx={{lineHeight: 2.4}} variant={'subtitle1'} textAlign={'justify'}>
در این راستا سازمان راهداری و حمل و نقل جاده ای به منظور بهبود کیفیت حمل و نقل بین شهری و
افزایش ظرفیت ترابری اقدام به اعطای وام به <Typography sx={{color: "secondary.main"}}
variant={'h5'}
fontWeight={'bold'}
component={'span'}>ناوگان های
مسافربری</Typography> برای
بازسازی و تعمیرات میکند.
</Typography>
</Grid>
<Grid item xs={12} md={5}>
<Box>
<TimeLineDetails/>
</Box>
</Grid>
</Grid>
</Container>
</Box>
)
}
export default LoanDescription