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
|
|
|
|
import SectionStyled from './SectionStyled';
|
|
|
|
|
import YoutobeIcon from "../../assets/LandingPict/youtobeIcon";
|
|
|
|
|
import OneIconBorder from "@icons/OneIconBorder";
|
2023-10-07 07:09:00 +00:00
|
|
|
|
import TwoIcon from "./images/icons/IconNumber2";
|
|
|
|
|
import ThreeIcon from "./images/icons/IconNumber3";
|
|
|
|
|
import FourIcon from "./images/icons/IconNumber4";
|
2023-10-07 04:48:13 +00:00
|
|
|
|
import Firstblock1 from "./images/firstblock1.png";
|
|
|
|
|
import Firstblock2 from "./images/firstblock2.png";
|
|
|
|
|
import Firstblock3 from "./images/firstblock3.png";
|
|
|
|
|
import Firstblock4 from "./images/firstblock4.png";
|
2023-10-07 07:09:00 +00:00
|
|
|
|
import Icon1 from "./images/icons/vkIcon";
|
|
|
|
|
import Icon2 from "./images/icons/clipIcon";
|
|
|
|
|
import Icon3 from "./images/icons/tiktokIcon";
|
2023-10-07 04:48:13 +00:00
|
|
|
|
import Icon4 from "./images/icons/Group133";
|
|
|
|
|
import Icon5 from "./images/icons/Group134";
|
|
|
|
|
import Icon6 from "./images/icons/Group135";
|
|
|
|
|
import Icon7 from "./images/icons/Group136";
|
|
|
|
|
import Icon8 from "./images/icons/Group137";
|
|
|
|
|
import Icon9 from "./images/icons/Group138";
|
|
|
|
|
import Icon10 from "./images/icons/Group139";
|
|
|
|
|
import Icon11 from "./images/icons/Group140";
|
|
|
|
|
import Icon12 from "./images/icons/Group141";
|
|
|
|
|
import Icon13 from "./images/icons/Group142";
|
|
|
|
|
import Icon14 from "./images/icons/Group147";
|
|
|
|
|
import Icon15 from "./images/icons/Group148";
|
|
|
|
|
import Icon16 from "./images/icons/Group149";
|
|
|
|
|
import Icon17 from "./images/icons/Group151";
|
|
|
|
|
import Icon18 from "./images/icons/Group152";
|
|
|
|
|
import Icon19 from "./images/icons/Group153";
|
|
|
|
|
import Icon20 from "./images/icons/Group154";
|
2023-10-07 07:09:00 +00:00
|
|
|
|
import Icon21 from "./images/icons/Network";
|
2023-10-04 22:21:17 +00:00
|
|
|
|
|
|
|
|
|
export default function HowItWorks () {
|
2023-10-10 22:22:03 +00:00
|
|
|
|
const theme = useTheme();
|
|
|
|
|
const isMobile = useMediaQuery(theme.breakpoints.down(600));
|
2023-10-11 13:17:10 +00:00
|
|
|
|
const isTablet = useMediaQuery(theme.breakpoints.down(1000))
|
2023-10-04 22:21:17 +00:00
|
|
|
|
return(
|
|
|
|
|
<SectionStyled tag={'section'} bg={'#333647'} sxsect={{minHeight: '2375px'}} mwidth={'1160px'}
|
|
|
|
|
sxcont={{
|
2023-10-11 13:17:10 +00:00
|
|
|
|
padding: isMobile ? '603px 16px 0 16px' : (isTablet ? '383px 40px 0 40px':'232px 10px 0 10px'),
|
2023-10-10 22:22:03 +00:00
|
|
|
|
boxSizing: 'border-box'
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Box color='#ffffff'
|
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
|
|
|
|
justifyContent: 'space-between',
|
|
|
|
|
flexWrap: 'wrap',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
marginBottom: isMobile ? "10px" : '65px',
|
|
|
|
|
gap: isMobile ? "30px" : undefined,
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Typography variant='h6' fontSize='36px' >Как это работает</Typography>
|
|
|
|
|
<Typography fontSize='18px'>Квиз как диалог</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
justifyContent: 'space-between',
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
flexWrap: 'wrap',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
gap: "17px",
|
|
|
|
|
flexDirection: isMobile ? "row-reverse" : undefined,
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
2023-10-10 22:22:03 +00:00
|
|
|
|
<Box width='140px'>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
<Typography fontSize='18px'>Видео о квизах 2 мин</Typography>
|
|
|
|
|
</Box>
|
2023-10-10 22:22:03 +00:00
|
|
|
|
<YoutobeIcon width={isMobile ? "73px" : "120px"} />
|
2023-10-04 22:21:17 +00:00
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
minHeight: '400px',
|
|
|
|
|
backgroundColor: '#ffffff',
|
|
|
|
|
width: '100%',
|
|
|
|
|
display: 'flex',
|
|
|
|
|
flexWrap: 'wrap',
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
borderRadius: '8px',
|
2023-10-11 13:17:10 +00:00
|
|
|
|
marginBottom: isMobile ? "26px" : (isTablet ? "60px" : "107px"),
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
2023-10-11 13:17:10 +00:00
|
|
|
|
width: isTablet ? undefined : '50%',
|
2023-10-04 22:21:17 +00:00
|
|
|
|
padding: '20px',
|
|
|
|
|
minHeight: '401px',
|
|
|
|
|
display: 'flex',
|
|
|
|
|
flexDirection: 'column',
|
|
|
|
|
justifyContent: 'space-between',
|
|
|
|
|
boxSizing: "border-box"
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
height: "36px",
|
|
|
|
|
width: "36px",
|
|
|
|
|
justifyContent: "center",
|
|
|
|
|
alignItems: "center",
|
|
|
|
|
display: "flex",
|
|
|
|
|
borderRadius: "6px",
|
|
|
|
|
background: "#EEE4FC"
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<OneIconBorder color={"#7E2AEA"}/>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
2023-10-11 13:17:10 +00:00
|
|
|
|
minHeight: isTablet ? '121px' : '162px',
|
2023-10-04 22:21:17 +00:00
|
|
|
|
justifyContent: 'flex-start',
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: 'column',
|
2023-10-16 18:41:57 +00:00
|
|
|
|
width: isMobile ? "300px" : (isTablet ? "840px" : "453px"),
|
2023-10-10 22:22:03 +00:00
|
|
|
|
gap: isMobile ? 0 : "20px",
|
|
|
|
|
marginTop: isMobile ? "10px" : 0
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
2023-10-10 22:22:03 +00:00
|
|
|
|
<Typography variant='h6' fontSize='36px'>
|
|
|
|
|
Начало диалога
|
|
|
|
|
</Typography>
|
|
|
|
|
<Typography fontSize='18px'>
|
|
|
|
|
Квиз, как любезный дворецкий, в нужный момент предлагает свою помощь и начинает диалог
|
|
|
|
|
</Typography>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
</Box>
|
2023-10-11 13:17:10 +00:00
|
|
|
|
{isTablet &&
|
2023-10-10 22:22:03 +00:00
|
|
|
|
<Box
|
|
|
|
|
component={"img"}
|
|
|
|
|
src={Firstblock1}
|
|
|
|
|
sx={{
|
|
|
|
|
backgroundColor: '#C8DADE',
|
2023-10-11 13:17:10 +00:00
|
|
|
|
width: isMobile ? '302px' : '880px',
|
|
|
|
|
height: isMobile ? '193px': '561px',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
borderRadius: '12px',
|
|
|
|
|
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
}
|
2023-10-04 22:21:17 +00:00
|
|
|
|
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
|
|
|
|
flexDirection: 'column',
|
2023-10-11 13:17:10 +00:00
|
|
|
|
maxWidth: isTablet ? '489px' : '507px',
|
2023-10-04 22:21:17 +00:00
|
|
|
|
height: '50%',
|
|
|
|
|
justifyContent: 'end',
|
2023-10-11 13:17:10 +00:00
|
|
|
|
marginTop: isMobile ? "20px" : (isTablet ? "34px" : undefined)
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
2023-10-10 22:22:03 +00:00
|
|
|
|
<Typography variant='h6' fontSize='20px'>
|
|
|
|
|
квиз можно использовать
|
|
|
|
|
</Typography>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
|
|
|
|
flexWrap: 'wrap',
|
|
|
|
|
justifyContent: 'space-between',
|
2023-10-11 13:17:10 +00:00
|
|
|
|
padding: isTablet ? '20px 0 0 0' : '20px 20px 0 0',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
flexDirection: isMobile ? "column" : "row",
|
|
|
|
|
gap: isMobile ? "10px" : undefined
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
2023-10-07 04:48:13 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
2023-10-07 07:09:00 +00:00
|
|
|
|
// width: '126px',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
justifyContent: isMobile ? "start" : 'space-between',
|
2023-10-07 04:48:13 +00:00
|
|
|
|
alignItems: 'center',
|
|
|
|
|
padding: '0',
|
|
|
|
|
flexWrap: 'wrap',
|
2023-10-07 07:09:00 +00:00
|
|
|
|
gap: "15px"
|
2023-10-07 04:48:13 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Icon21/>
|
|
|
|
|
<Typography fontSize='18px'> на сайте</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
2023-10-07 07:09:00 +00:00
|
|
|
|
// width: '126px',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
justifyContent: isMobile ? "start" : 'space-between',
|
2023-10-07 04:48:13 +00:00
|
|
|
|
alignItems: 'center',
|
|
|
|
|
padding: '0',
|
|
|
|
|
flexWrap: 'wrap',
|
2023-10-07 07:09:00 +00:00
|
|
|
|
gap: "15px"
|
2023-10-07 04:48:13 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Icon2/>
|
|
|
|
|
<Typography fontSize='18px'> по прямой ссылке</Typography>
|
|
|
|
|
</Box>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
</Box>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
|
|
|
|
flexWrap: 'wrap',
|
|
|
|
|
justifyContent: 'space-between',
|
2023-10-11 13:17:10 +00:00
|
|
|
|
padding: isMobile ? "10px 94px 0 0" : isTablet ? "20px 76px 0 0" : "20px 94px 0 0",
|
2023-10-10 22:22:03 +00:00
|
|
|
|
gap: isMobile ? "10px" : undefined
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
2023-10-07 04:48:13 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
2023-10-07 07:09:00 +00:00
|
|
|
|
// width: '126px',
|
2023-10-07 04:48:13 +00:00
|
|
|
|
justifyContent: 'space-between',
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
padding: '0',
|
|
|
|
|
flexWrap: 'wrap',
|
2023-10-07 07:09:00 +00:00
|
|
|
|
gap: "15px"
|
2023-10-07 04:48:13 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Icon1/>
|
|
|
|
|
<Typography fontSize='18px'> Вконтакте</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
2023-10-07 07:09:00 +00:00
|
|
|
|
// width: '126px',
|
2023-10-07 04:48:13 +00:00
|
|
|
|
justifyContent: 'space-between',
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
padding: '0',
|
|
|
|
|
flexWrap: 'wrap',
|
2023-10-07 07:09:00 +00:00
|
|
|
|
gap: "15px"
|
2023-10-07 04:48:13 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Icon3/>
|
|
|
|
|
<Typography fontSize='18px'> в Тик-ток</Typography>
|
|
|
|
|
</Box>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box
|
2023-10-07 04:48:13 +00:00
|
|
|
|
component={"img"}
|
|
|
|
|
src={Firstblock1}
|
2023-10-04 22:21:17 +00:00
|
|
|
|
sx={{
|
2023-10-11 13:17:10 +00:00
|
|
|
|
display: isTablet ? "none" : "block",
|
2023-10-04 22:21:17 +00:00
|
|
|
|
backgroundColor: '#C8DADE',
|
|
|
|
|
width: '564px',
|
|
|
|
|
height: '360px',
|
|
|
|
|
borderRadius: '12px',
|
|
|
|
|
|
|
|
|
|
}}
|
2023-10-07 04:48:13 +00:00
|
|
|
|
/>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
</Box>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
minHeight: '400px',
|
|
|
|
|
backgroundColor: '#ffffff',
|
|
|
|
|
width: '100%',
|
|
|
|
|
display: 'flex',
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
borderRadius: '8px',
|
2023-10-11 13:17:10 +00:00
|
|
|
|
marginBottom: isMobile ? "26px" : (isTablet ? "60px" : "107px"),
|
2023-10-04 22:21:17 +00:00
|
|
|
|
flexWrap: 'wrap',
|
|
|
|
|
boxSizing: "border-box"
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
2023-10-11 13:17:10 +00:00
|
|
|
|
width: isTablet ? undefined : '50%',
|
2023-10-04 22:21:17 +00:00
|
|
|
|
minHeight: '401px',
|
|
|
|
|
display: 'flex',
|
|
|
|
|
flexDirection: 'column',
|
|
|
|
|
justifyContent: 'space-between',
|
|
|
|
|
padding: '20px',
|
|
|
|
|
boxSizing: "border-box"
|
|
|
|
|
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
height: "36px",
|
|
|
|
|
width: "36px",
|
|
|
|
|
justifyContent: "center",
|
|
|
|
|
alignItems: "center",
|
|
|
|
|
display: "flex",
|
|
|
|
|
borderRadius: "6px",
|
|
|
|
|
background: "#EEE4FC"
|
|
|
|
|
}}
|
|
|
|
|
>
|
2023-10-07 07:09:00 +00:00
|
|
|
|
<TwoIcon/>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
</Box>
|
|
|
|
|
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
minHeight: '40%',
|
|
|
|
|
display: 'flex',
|
|
|
|
|
justifyContent: 'space-around',
|
|
|
|
|
flexDirection: 'column',
|
2023-10-11 13:17:10 +00:00
|
|
|
|
marginBottom: isMobile ? '23px' : isTablet ? '15px' : '90px',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
gap: isMobile ? 0 : "20px",
|
|
|
|
|
marginTop: isMobile ? "7px" : undefined
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
2023-10-10 22:22:03 +00:00
|
|
|
|
<Typography variant='h6' fontSize='36px'>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
Задаем вопросы
|
|
|
|
|
</Typography>
|
2023-10-11 13:17:10 +00:00
|
|
|
|
<Typography fontSize='18px' sx={{maxWidth: isMobile ? "335px" : isTablet ? "100%" : "444px" }} >
|
2023-10-04 22:21:17 +00:00
|
|
|
|
Забота заключается в том, чтобы интересоваться желаниями посетителя, задавать уточняющие вопросы и помогать делать правильный выбор
|
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
2023-10-11 13:17:10 +00:00
|
|
|
|
{isTablet &&
|
2023-10-10 22:22:03 +00:00
|
|
|
|
<Box
|
|
|
|
|
component={"img"}
|
|
|
|
|
src={Firstblock2}
|
|
|
|
|
sx={{
|
|
|
|
|
backgroundColor: '#C8DADE',
|
2023-10-11 13:17:10 +00:00
|
|
|
|
width: isMobile ? '302px' : '880px',
|
|
|
|
|
height: isMobile ? '193px': '561px',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
borderRadius: '12px',
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
}
|
2023-10-04 22:21:17 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
|
|
|
|
flexDirection: 'column',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
maxWidth: isMobile ? "245px" : "500px",
|
2023-10-04 22:21:17 +00:00
|
|
|
|
height: '50%',
|
|
|
|
|
justifyContent: 'end',
|
2023-10-11 13:17:10 +00:00
|
|
|
|
marginTop: isMobile ? "40px" : isTablet ? "35px" : undefined
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Typography variant='h6' fontSize='20px'>10 форматов вопроса</Typography>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: "flex",
|
2023-10-10 22:22:03 +00:00
|
|
|
|
flexWrap: 'wrap',
|
2023-10-04 22:21:17 +00:00
|
|
|
|
justifyContent: 'space-between',
|
|
|
|
|
marginTop: '15px',
|
2023-10-07 07:09:00 +00:00
|
|
|
|
gap: "15px"
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
2023-10-07 07:09:00 +00:00
|
|
|
|
<Icon4/>
|
|
|
|
|
<Icon5/>
|
|
|
|
|
<Icon6/>
|
|
|
|
|
<Icon7/>
|
|
|
|
|
<Icon8/>
|
|
|
|
|
<Icon9/>
|
|
|
|
|
<Icon10/>
|
|
|
|
|
<Icon11/>
|
|
|
|
|
<Icon12/>
|
|
|
|
|
<Icon13/>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box
|
2023-10-07 04:48:13 +00:00
|
|
|
|
component={"img"}
|
|
|
|
|
src={Firstblock2}
|
2023-10-04 22:21:17 +00:00
|
|
|
|
sx={{
|
2023-10-11 13:17:10 +00:00
|
|
|
|
display: isTablet ? "none" : "block",
|
2023-10-04 22:21:17 +00:00
|
|
|
|
backgroundColor: '#C8DADE',
|
|
|
|
|
width: '564px',
|
|
|
|
|
height: '360px',
|
|
|
|
|
borderRadius: '12px',
|
|
|
|
|
}}
|
2023-10-07 04:48:13 +00:00
|
|
|
|
/>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
</Box>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
minHeight: '400px',
|
|
|
|
|
backgroundColor: '#ffffff',
|
|
|
|
|
width: '100%',
|
|
|
|
|
display: 'flex',
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
borderRadius: '8px',
|
2023-10-11 13:17:10 +00:00
|
|
|
|
marginBottom: isMobile ? "26px" : (isTablet ? "60px" : "107px"),
|
2023-10-04 22:21:17 +00:00
|
|
|
|
flexWrap: 'wrap',
|
|
|
|
|
boxSizing: "border-box"
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
2023-10-11 13:17:10 +00:00
|
|
|
|
width: isTablet ? undefined : '50%',
|
2023-10-04 22:21:17 +00:00
|
|
|
|
height: '100%',
|
|
|
|
|
padding: '20px',
|
|
|
|
|
gap: "10px",
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
boxSizing: "border-box"
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
height: "36px",
|
|
|
|
|
width: "36px",
|
|
|
|
|
justifyContent: "center",
|
|
|
|
|
alignItems: "center",
|
|
|
|
|
display: "flex",
|
|
|
|
|
borderRadius: "6px",
|
|
|
|
|
background: "#EEE4FC"
|
|
|
|
|
}}
|
|
|
|
|
>
|
2023-10-07 07:09:00 +00:00
|
|
|
|
<ThreeIcon/>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
</Box>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
minHeight: '40%',
|
|
|
|
|
justifyContent: 'space-around',
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: 'column',
|
2023-10-11 13:17:10 +00:00
|
|
|
|
maxWidth: isTablet ? "100%" : '388px',
|
2023-10-04 22:21:17 +00:00
|
|
|
|
gap: "20px"
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Typography variant='h6' fontSize='36px' lineHeight='normal'>Показываем рекомендацию</Typography>
|
|
|
|
|
<Typography fontSize='18px'>На основе ответов мы подбираем наиболее подходящие товары или услуги</Typography>
|
|
|
|
|
</Box>
|
2023-10-11 13:17:10 +00:00
|
|
|
|
{isTablet &&
|
2023-10-10 22:22:03 +00:00
|
|
|
|
<Box
|
|
|
|
|
component={"img"}
|
|
|
|
|
src={Firstblock3}
|
|
|
|
|
sx={{
|
|
|
|
|
backgroundColor: '#C8DADE',
|
2023-10-11 13:17:10 +00:00
|
|
|
|
width: isMobile ? '302px' : '880px',
|
|
|
|
|
height: isMobile ? '193px': '561px',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
borderRadius: '12px',
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
}
|
2023-10-04 22:21:17 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
|
|
|
|
flexDirection: 'column',
|
2023-10-07 07:09:00 +00:00
|
|
|
|
maxWidth: '497px',
|
2023-10-04 22:21:17 +00:00
|
|
|
|
minHeight: '50%',
|
|
|
|
|
justifyContent: 'end',
|
2023-10-11 13:17:10 +00:00
|
|
|
|
marginTop: isMobile ? undefined : isTablet ? " 34px" : undefined
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Typography variant='h6' fontSize='20px'>точный показ результатов</Typography>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
justifyContent: isMobile ? 'start' : 'space-between',
|
2023-10-04 22:21:17 +00:00
|
|
|
|
padding: '20px 20px 0 0',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
flexDirection: isMobile ? "column" : "row",
|
|
|
|
|
gap: isMobile ? "15px" : undefined
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
2023-10-07 04:48:13 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
justifyContent: isMobile ? 'start' : 'space-between',
|
2023-10-07 04:48:13 +00:00
|
|
|
|
alignItems: 'center',
|
|
|
|
|
padding: '0',
|
|
|
|
|
flexWrap: 'wrap',
|
2023-10-07 07:09:00 +00:00
|
|
|
|
gap: "15px"
|
2023-10-07 04:48:13 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Icon14/>
|
|
|
|
|
<Typography fontSize='18px'> логика ветвления</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
justifyContent: isMobile ? 'start' : 'space-between',
|
2023-10-07 04:48:13 +00:00
|
|
|
|
alignItems: 'center',
|
|
|
|
|
padding: '0',
|
|
|
|
|
flexWrap: 'wrap',
|
2023-10-07 07:09:00 +00:00
|
|
|
|
gap: "15px"
|
2023-10-07 04:48:13 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Icon15/>
|
|
|
|
|
<Typography fontSize='18px'> калькулятор цен</Typography>
|
|
|
|
|
</Box>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
</Box>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
|
|
|
|
justifyContent: 'space-between',
|
|
|
|
|
padding: '20px 20px 0 0',
|
|
|
|
|
}}
|
|
|
|
|
>
|
2023-10-07 04:48:13 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
|
|
|
|
justifyContent: 'space-between',
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
padding: '0',
|
|
|
|
|
flexWrap: 'wrap',
|
2023-10-07 07:09:00 +00:00
|
|
|
|
gap: "15px"
|
2023-10-07 04:48:13 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Icon16/>
|
|
|
|
|
<Typography fontSize='18px'> скидки</Typography>
|
|
|
|
|
</Box>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
</Box>
|
|
|
|
|
|
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box
|
2023-10-07 04:48:13 +00:00
|
|
|
|
component={"img"}
|
|
|
|
|
src={Firstblock3}
|
2023-10-04 22:21:17 +00:00
|
|
|
|
sx={{
|
2023-10-11 13:17:10 +00:00
|
|
|
|
display: isTablet ? "none" : "block",
|
2023-10-04 22:21:17 +00:00
|
|
|
|
backgroundColor: '#C8DADE',
|
|
|
|
|
width: '564px',
|
|
|
|
|
height: '360px',
|
|
|
|
|
boxSizing: "border-box",
|
|
|
|
|
borderRadius: '12px',
|
|
|
|
|
}}
|
2023-10-07 04:48:13 +00:00
|
|
|
|
/>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
</Box>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
minHeight: '400px',
|
|
|
|
|
backgroundColor: '#ffffff',
|
|
|
|
|
width: '100%',
|
|
|
|
|
display: 'flex',
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
borderRadius: '8px',
|
2023-10-11 13:17:10 +00:00
|
|
|
|
marginBottom: isMobile ? "25px" : (isTablet ? "60px" : "126px"),
|
2023-10-04 22:21:17 +00:00
|
|
|
|
flexWrap: 'wrap',
|
|
|
|
|
boxSizing: "border-box"
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
2023-10-11 13:17:10 +00:00
|
|
|
|
width: isTablet ? undefined :'50%',
|
2023-10-04 22:21:17 +00:00
|
|
|
|
height: '100%',
|
|
|
|
|
padding: '20px',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
boxSizing: "border-box",
|
|
|
|
|
gap: "20px",
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column"
|
2023-10-04 22:21:17 +00:00
|
|
|
|
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
height: "36px",
|
|
|
|
|
width: "36px",
|
|
|
|
|
justifyContent: "center",
|
|
|
|
|
alignItems: "center",
|
|
|
|
|
display: "flex",
|
|
|
|
|
borderRadius: "6px",
|
|
|
|
|
background: "#EEE4FC",
|
|
|
|
|
}}
|
|
|
|
|
>
|
2023-10-07 07:09:00 +00:00
|
|
|
|
<FourIcon/>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
</Box>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
minHeight: '40%',
|
|
|
|
|
justifyContent: 'space-around',
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: 'column',
|
2023-10-11 13:17:10 +00:00
|
|
|
|
maxWidth: isTablet ? "100%" :'457px',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
marginTop: isMobile ? "-13px" : 0
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
2023-10-10 22:22:03 +00:00
|
|
|
|
<Typography variant='h6' fontSize='36px'>Узнаем контакт</Typography>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
<Typography fontSize='18px'>Только в конце диалога спрашиваем контакты. Здесь посетитель уже знает, что вы позаботились предложить ему то, что надо и с большей вероятностью оставит заявку</Typography>
|
|
|
|
|
</Box>
|
2023-10-11 13:17:10 +00:00
|
|
|
|
{isTablet &&
|
2023-10-10 22:22:03 +00:00
|
|
|
|
<Box
|
|
|
|
|
component={"img"}
|
|
|
|
|
src={Firstblock4}
|
|
|
|
|
sx={{
|
|
|
|
|
backgroundColor: '#C8DADE',
|
2023-10-11 13:17:10 +00:00
|
|
|
|
width: isMobile ? '302px' : '880px',
|
|
|
|
|
height: isMobile ? '193px': '561px',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
borderRadius: '12px',
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
}
|
2023-10-04 22:21:17 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
|
|
|
|
flexDirection: 'column',
|
2023-10-07 07:09:00 +00:00
|
|
|
|
maxWidth: '520px',
|
2023-10-04 22:21:17 +00:00
|
|
|
|
height: '50%',
|
|
|
|
|
justifyContent: 'end',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
marginTop: isMobile ? "20px" : 0
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Typography variant='h6' fontSize='20px'>что можно делать на последнем шаге</Typography>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
|
|
|
|
justifyContent: 'space-between',
|
|
|
|
|
padding: '20px 20px 0 0',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
flexDirection: isMobile ? "column" : "row",
|
|
|
|
|
gap: isMobile ? "15px" : undefined
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
2023-10-07 04:48:13 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
justifyContent: isMobile ? 'start' : 'space-between',
|
2023-10-07 04:48:13 +00:00
|
|
|
|
alignItems: 'center',
|
|
|
|
|
padding: '0',
|
|
|
|
|
flexWrap: 'wrap',
|
2023-10-07 07:09:00 +00:00
|
|
|
|
gap: "15px"
|
2023-10-07 04:48:13 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Icon17/>
|
|
|
|
|
<Typography fontSize='18px'> сбор контактов</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
justifyContent: isMobile ? 'start' : 'space-between',
|
2023-10-07 04:48:13 +00:00
|
|
|
|
alignItems: 'center',
|
|
|
|
|
padding: '0',
|
|
|
|
|
flexWrap: 'wrap',
|
2023-10-07 07:09:00 +00:00
|
|
|
|
gap: "15px"
|
2023-10-07 04:48:13 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Icon18/>
|
2023-10-07 07:09:00 +00:00
|
|
|
|
<Typography fontSize='18px'> воронки и чат-боты</Typography>
|
2023-10-07 04:48:13 +00:00
|
|
|
|
</Box>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
</Box>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
|
|
|
|
justifyContent: 'space-between',
|
2023-10-07 07:09:00 +00:00
|
|
|
|
padding: '20px 79px 0 0',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
flexDirection: isMobile ? "column" : "row",
|
|
|
|
|
gap: isMobile ? "15px" : undefined
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
2023-10-07 04:48:13 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
justifyContent: isMobile ? 'start' : 'space-between',
|
2023-10-07 04:48:13 +00:00
|
|
|
|
alignItems: 'center',
|
|
|
|
|
padding: '0',
|
|
|
|
|
flexWrap: 'wrap',
|
2023-10-07 07:09:00 +00:00
|
|
|
|
gap: "15px"
|
2023-10-07 04:48:13 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Icon19/>
|
|
|
|
|
<Typography fontSize='18px'> интеграция с CRM</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
justifyContent: isMobile ? 'start' : 'space-between',
|
2023-10-07 04:48:13 +00:00
|
|
|
|
alignItems: 'center',
|
|
|
|
|
padding: '0',
|
|
|
|
|
flexWrap: 'wrap',
|
2023-10-07 07:09:00 +00:00
|
|
|
|
gap: "15px"
|
2023-10-07 04:48:13 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Icon20/>
|
|
|
|
|
<Typography fontSize='18px'> прием оплат</Typography>
|
|
|
|
|
</Box>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
</Box>
|
|
|
|
|
|
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box
|
2023-10-07 04:48:13 +00:00
|
|
|
|
component={"img"}
|
|
|
|
|
src={Firstblock4}
|
2023-10-04 22:21:17 +00:00
|
|
|
|
sx={{
|
2023-10-11 13:17:10 +00:00
|
|
|
|
display: isTablet ? "none" : "block",
|
2023-10-04 22:21:17 +00:00
|
|
|
|
backgroundColor: '#C8DADE',
|
|
|
|
|
width: '564px',
|
|
|
|
|
height: '360px',
|
|
|
|
|
|
|
|
|
|
borderRadius: '12px',
|
|
|
|
|
}}
|
2023-10-07 04:48:13 +00:00
|
|
|
|
/>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
</Box>
|
|
|
|
|
</SectionStyled>
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
}
|