frontPanel/src/pages/Landing/Counter.tsx

88 lines
3.5 KiB
TypeScript
Raw Normal View History

2023-10-04 22:21:17 +00:00
import React from 'react';
import Box from '@mui/material/Box';
import {Typography, useMediaQuery, useTheme} from "@mui/material";
2023-10-04 22:21:17 +00:00
export default function Counter() {
const theme = useTheme();
const isMobile = useMediaQuery(theme.breakpoints.down(600));
const isTablet = useMediaQuery(theme.breakpoints.down(1000))
2023-10-04 22:21:17 +00:00
return(
<Box
2023-10-04 22:21:17 +00:00
sx={{
width: '100%',
fontFamily: 'Rubik',
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
height: 0,
boxSizing: "border-box",
padding: isTablet ? "0 40px" : undefined,
2023-10-04 22:21:17 +00:00
}}
>
<Box
sx={{
maxWidth: '1160px',
height: isMobile ? "587px" : isTablet ? "341px" : "190px",
2023-10-04 22:21:17 +00:00
display: 'flex',
justifyContent: 'space-between',
alignItems: isTablet ? 'start' : 'center',
2023-10-04 22:21:17 +00:00
flexWrap: 'wrap',
backgroundColor: '#7E2AEA',
color: '#ffffff',
borderRadius: '8px',
boxSizing: "border-box",
padding: isMobile ? '42px 60px 30px 35px' : isTablet ? '37px 99px 0px 100px' : '30px 60px 30px 20px',
2023-10-04 22:21:17 +00:00
width: '100%',
marginTop: isMobile ? "483px" : isTablet ? "258px" : "106px",
rowGap: isMobile ? undefined : (isTablet ? '51px' : undefined),
2023-10-04 22:21:17 +00:00
}}
>
<Box
sx={{
width: isTablet ? '305px' : '203px',
2023-10-04 22:21:17 +00:00
}}
>
<Typography variant='h3' fontSize={isMobile ? '42px' : '50px'} fontWeight={'500'}>14 дней</Typography>
2023-10-04 22:21:17 +00:00
<Typography> бесплатно, полный функционал</Typography>
</Box>
<Box
sx={{
width: isTablet ? '305px' : undefined
}}
>
<Typography variant='h3' fontSize={isMobile ? '42px' : '50px'} fontWeight={'500'}>5 мин</Typography>
2023-10-04 22:21:17 +00:00
<Box
sx={{
width: isTablet ? '200px' : '131px',
2023-10-04 22:21:17 +00:00
}}
>
<Typography >для создания квиза</Typography>
</Box>
</Box>
<Box
sx={{
width: isTablet ? '305px' : undefined
}}
>
<Typography variant='h3' fontSize={isMobile ? '42px' : '50px'} fontWeight={'500'}>482 800</Typography>
2023-10-04 22:21:17 +00:00
<Box
sx={{
width: isMobile? '200px' : (isTablet ? '250px' : '200px'),
2023-10-04 22:21:17 +00:00
}}
>
<Typography >квизов создано клиентами</Typography>
</Box>
</Box>
<Box
sx={{
width: isTablet ? '305px' : '177px',
2023-10-04 22:21:17 +00:00
}}
>
<Typography variant='h3' fontSize={isMobile ? '42px' : '50px'} fontWeight={'500'}>760</Typography>
2023-10-04 22:21:17 +00:00
<Typography>готовых шаблонов для разных ниш</Typography>
</Box>
</Box>
</Box>
2023-10-04 22:21:17 +00:00
)
}