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