2023-10-10 22:22:03 +00:00
|
|
|
|
import React, {useState} from 'react';
|
2023-10-04 22:21:17 +00:00
|
|
|
|
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 Button from "@mui/material/Button";
|
2023-10-07 07:09:00 +00:00
|
|
|
|
// import Desktop from '../../assets/LandingPict/Desktop.png';
|
|
|
|
|
import Desktop1 from './images/Frame 1171274552.png';
|
|
|
|
|
import Desktop2 from './images/Frame 1171274552-1.png';
|
|
|
|
|
import Desktop3 from './images/Frame 1171274552-2.png';
|
|
|
|
|
import Desktop4 from './images/Frame 1171274552-3.png';
|
|
|
|
|
import Desktop5 from './images/Frame 1171274552-4.png';
|
|
|
|
|
import Desktop6 from './images/Frame 1171274552-5.png';
|
|
|
|
|
import Desktop7 from './images/Frame 1171274552-6.png';
|
2023-10-04 22:21:17 +00:00
|
|
|
|
import {styled} from "@mui/material/styles";
|
|
|
|
|
//
|
|
|
|
|
// const BoxCard = styled('div')(({ theme }) => ({
|
|
|
|
|
// [theme.breakpoints.down('xl')]: {
|
|
|
|
|
// alignItems: 'center',
|
|
|
|
|
// width: '100%',
|
|
|
|
|
// },
|
|
|
|
|
// }));
|
|
|
|
|
interface Props {
|
|
|
|
|
children: React.ReactNode;
|
2023-10-07 07:09:00 +00:00
|
|
|
|
image: string;
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function BoxFich(props: Props) {
|
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 isTabletOnly = useMediaQuery(theme.breakpoints.between(600, 1000))
|
2023-10-04 22:21:17 +00:00
|
|
|
|
return(
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
2023-10-11 13:17:10 +00:00
|
|
|
|
maxWidth: isTabletOnly ? '801px' : '500px',
|
2023-10-04 22:21:17 +00:00
|
|
|
|
minHeight: '350px',
|
|
|
|
|
backgroundColor: '#252734',
|
|
|
|
|
borderRadius: '12px',
|
|
|
|
|
overflow: 'hidden',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
justifyContent: isMobile ? "space-between" : undefined,
|
|
|
|
|
height: isMobile ? "450px" : undefined
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
2023-10-11 13:17:10 +00:00
|
|
|
|
<Box
|
2023-10-04 22:21:17 +00:00
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
|
|
|
|
justifyContent: 'space-between',
|
|
|
|
|
width: '100%',
|
|
|
|
|
minHeight: '50%',
|
|
|
|
|
padding: '20px',
|
|
|
|
|
flexWrap: 'wrap',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
boxSizing: "border-box",
|
2023-10-11 13:17:10 +00:00
|
|
|
|
flexDirection: isTabletOnly ? "column" : "row",
|
2023-10-10 22:22:03 +00:00
|
|
|
|
gap: isMobile ? "16px" : undefined
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
{props.children}
|
2023-10-11 13:17:10 +00:00
|
|
|
|
</Box>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
|
|
|
|
justifyContent: 'end',
|
|
|
|
|
alignItems: 'end',
|
|
|
|
|
}}
|
|
|
|
|
>
|
2023-10-07 07:09:00 +00:00
|
|
|
|
<img src={props.image} width={'96%'}/>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default function Component () {
|
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))
|
|
|
|
|
const isTabletOnly = useMediaQuery(theme.breakpoints.between(600, 1000))
|
2023-10-15 18:54:51 +00:00
|
|
|
|
const [open, setOpen] = useState(true);
|
2023-10-10 22:22:03 +00:00
|
|
|
|
|
2023-10-04 22:21:17 +00:00
|
|
|
|
return (
|
|
|
|
|
<SectionStyled tag={'section'} bg={'#333647'} mwidth={'1160px'}
|
|
|
|
|
sxsect={{minHeight: '2074px',}}
|
|
|
|
|
sxcont={{
|
|
|
|
|
display: 'flex',
|
|
|
|
|
justifyContent: 'space-between',
|
|
|
|
|
minHeight: '2074px',
|
2023-10-11 13:17:10 +00:00
|
|
|
|
padding: isMobile ? "20px 16px 40px 16px" : isTablet ? "30px 40px" : "30px 0",
|
2023-10-04 22:21:17 +00:00
|
|
|
|
color: '#ffffff',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
flexWrap: "wrap"
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
{/*левая колонка*/}
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
|
|
|
|
flexDirection: 'column',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
gap: isMobile ? "25px" : "120px",
|
2023-10-04 22:21:17 +00:00
|
|
|
|
paddingTop: "46px"
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
maxWidth: '400px',
|
|
|
|
|
minHeight: '84px',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
marginBottom: isMobile ? 0 : "-55px"
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}}>
|
|
|
|
|
<Typography variant='h1'
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize:'36px',
|
|
|
|
|
fontWeight:'500',
|
|
|
|
|
lineHeight:'43px',
|
|
|
|
|
}}
|
|
|
|
|
>
|
2023-10-10 22:22:03 +00:00
|
|
|
|
Что по фичам?
|
2023-10-04 22:21:17 +00:00
|
|
|
|
</Typography>
|
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize:'18px',
|
|
|
|
|
fontWeight: '400',
|
|
|
|
|
lineHeight: '21px',
|
|
|
|
|
margin: '20px 0 10px 0',
|
|
|
|
|
}}
|
|
|
|
|
>
|
2023-10-10 22:22:03 +00:00
|
|
|
|
Самый функциональный конструктор квизов
|
2023-10-04 22:21:17 +00:00
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
2023-10-07 07:09:00 +00:00
|
|
|
|
<BoxFich image={Desktop1}>
|
2023-10-11 13:17:10 +00:00
|
|
|
|
<Box sx={{maxWidth: isTabletOnly ? '244px' : '174px'}}>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
color: '#7e2aea',
|
|
|
|
|
fontSize: '24px',
|
|
|
|
|
fontWeight: '500',
|
|
|
|
|
lineHeight: '28.44px'
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
01
|
|
|
|
|
</Typography>
|
|
|
|
|
<Typography variant={'h6'}
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: '24px',
|
|
|
|
|
fontWeight: '500',
|
|
|
|
|
lineHeight: '28.44px'
|
|
|
|
|
}}
|
2023-10-10 22:22:03 +00:00
|
|
|
|
>Привязка к вашему домену</Typography>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
</Box>
|
2023-10-11 13:17:10 +00:00
|
|
|
|
<Box sx={{maxWidth: isTabletOnly ? '300px' : '230px'}}>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: '18px',
|
|
|
|
|
fontWeight: '400',
|
|
|
|
|
lineHeight: '21px',
|
|
|
|
|
}}
|
|
|
|
|
>
|
2023-10-10 22:22:03 +00:00
|
|
|
|
Привяжите квиз к своему брендовому домену и получайте
|
|
|
|
|
максимальную отдачу от каждой заявки
|
2023-10-04 22:21:17 +00:00
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
</BoxFich>
|
2023-10-07 07:09:00 +00:00
|
|
|
|
<BoxFich image={Desktop2}>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
<Box maxWidth={'227px'}>
|
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
color: '#7e2aea',
|
|
|
|
|
fontSize: '24px',
|
|
|
|
|
fontWeight: '500',
|
|
|
|
|
lineHeight: '28.44px'
|
|
|
|
|
}}
|
|
|
|
|
>03</Typography>
|
|
|
|
|
<Typography variant={'h6'}
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: '24px',
|
|
|
|
|
fontWeight: '500',
|
|
|
|
|
lineHeight: '28.44px'
|
|
|
|
|
}}
|
|
|
|
|
>Аналитика</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box maxWidth={'230px'}>
|
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: '18px',
|
|
|
|
|
fontWeight: '400',
|
|
|
|
|
lineHeight: '21px',
|
|
|
|
|
}}
|
|
|
|
|
>
|
2023-10-10 22:22:03 +00:00
|
|
|
|
Внутренняя аналитика считает конверсию квиза на каждом шаге,
|
|
|
|
|
показывает развернутую статистику по ответам и пользователям
|
2023-10-04 22:21:17 +00:00
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
</BoxFich>
|
2023-10-07 07:09:00 +00:00
|
|
|
|
<BoxFich image={Desktop3}>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
<Box maxWidth={'227px'}>
|
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
color: '#7e2aea',
|
|
|
|
|
fontSize: '24px',
|
|
|
|
|
fontWeight: '500',
|
|
|
|
|
lineHeight: '28.44px'
|
|
|
|
|
}}
|
|
|
|
|
>05</Typography>
|
|
|
|
|
<Typography variant={'h6'}
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: '24px',
|
|
|
|
|
fontWeight: '500',
|
|
|
|
|
lineHeight: '28.44px'
|
|
|
|
|
}}
|
|
|
|
|
>Режим анкетирования</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box maxWidth={'230px'}>
|
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: '18px',
|
|
|
|
|
fontWeight: '400',
|
|
|
|
|
lineHeight: '21px',
|
|
|
|
|
}}
|
|
|
|
|
>
|
2023-10-10 22:22:03 +00:00
|
|
|
|
Самый удобный инструмент для проведения исследований аудитории ,
|
|
|
|
|
больше вас не сдерживают никакие ограничения.
|
2023-10-04 22:21:17 +00:00
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
</BoxFich>
|
2023-10-07 07:09:00 +00:00
|
|
|
|
<BoxFich image={Desktop4}>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
<Box maxWidth={'226px'}>
|
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
color: '#7e2aea',
|
|
|
|
|
fontSize: '24px',
|
|
|
|
|
fontWeight: '500',
|
|
|
|
|
lineHeight: '28.44px'
|
|
|
|
|
}}
|
|
|
|
|
>07</Typography>
|
|
|
|
|
<Typography variant={'h6'}
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: '24px',
|
|
|
|
|
fontWeight: '500',
|
|
|
|
|
lineHeight: '28.44px'
|
|
|
|
|
}}
|
|
|
|
|
>Интерактивные тесты</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box maxWidth={'234px'}>
|
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: '18px',
|
|
|
|
|
fontWeight: '400',
|
|
|
|
|
lineHeight: '21px',
|
|
|
|
|
}}
|
|
|
|
|
>
|
2023-10-10 22:22:03 +00:00
|
|
|
|
Тест увеличит вовлеченность аудитории, покажет правильные
|
|
|
|
|
или неправильные ответы и все это в игровой форме
|
2023-10-04 22:21:17 +00:00
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
</BoxFich>
|
|
|
|
|
</Box>
|
|
|
|
|
{/*правая колонка*/}
|
2023-10-10 22:22:03 +00:00
|
|
|
|
|
|
|
|
|
<Box>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: open ? 'flex' : "none",
|
|
|
|
|
flexDirection: 'column',
|
|
|
|
|
paddingTop: isMobile ? "25px" : "106px",
|
|
|
|
|
gap: isMobile ? "25px" : "113px",
|
|
|
|
|
alignItems: "end"
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<BoxFich image={Desktop5}>
|
|
|
|
|
<Box maxWidth={'227px'}>
|
|
|
|
|
<Typography
|
2023-10-04 22:21:17 +00:00
|
|
|
|
sx={{
|
2023-10-10 22:22:03 +00:00
|
|
|
|
color: '#7e2aea',
|
2023-10-04 22:21:17 +00:00
|
|
|
|
fontSize: '24px',
|
|
|
|
|
fontWeight: '500',
|
|
|
|
|
lineHeight: '28.44px'
|
|
|
|
|
}}
|
2023-10-10 22:22:03 +00:00
|
|
|
|
>02</Typography>
|
|
|
|
|
<Typography variant={'h6'}
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: '24px',
|
|
|
|
|
fontWeight: '500',
|
|
|
|
|
lineHeight: '28.44px'
|
|
|
|
|
}}
|
|
|
|
|
>Повышение конверсии</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box maxWidth={'233px'}>
|
|
|
|
|
<Typography
|
2023-10-04 22:21:17 +00:00
|
|
|
|
sx={{
|
2023-10-10 22:22:03 +00:00
|
|
|
|
fontSize: '18px',
|
|
|
|
|
fontWeight: '400',
|
|
|
|
|
lineHeight: '21px',
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Конверсию можно увеличить, добавив тающую скидку,
|
|
|
|
|
консультанта с подсказками или бонус, который пользователь получит в конце квиза
|
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
</BoxFich>
|
|
|
|
|
<BoxFich image={Desktop6}>
|
|
|
|
|
<Box maxWidth={'227px'}>
|
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
color: '#7e2aea',
|
2023-10-04 22:21:17 +00:00
|
|
|
|
fontSize: '24px',
|
|
|
|
|
fontWeight: '500',
|
|
|
|
|
lineHeight: '28.44px'
|
2023-10-10 22:22:03 +00:00
|
|
|
|
}}>04</Typography>
|
|
|
|
|
<Typography variant={'h6'}
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: '24px',
|
|
|
|
|
fontWeight: '500',
|
|
|
|
|
lineHeight: '28.44px'
|
|
|
|
|
}}
|
|
|
|
|
>Расширенеие настройки дизайна</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box maxWidth={'230px'}>
|
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: '18px',
|
|
|
|
|
fontWeight: '400',
|
|
|
|
|
lineHeight: '21px',
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}}
|
2023-10-10 22:22:03 +00:00
|
|
|
|
>
|
|
|
|
|
Настройте цвета, шрифт и выберите формат стартовой страницы,
|
|
|
|
|
чтобы сделать свой квиз уникальным
|
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
</BoxFich>
|
|
|
|
|
<BoxFich image={Desktop7}>
|
|
|
|
|
<Box maxWidth={'220px'}>
|
|
|
|
|
<Typography
|
2023-10-04 22:21:17 +00:00
|
|
|
|
sx={{
|
2023-10-10 22:22:03 +00:00
|
|
|
|
color: '#7e2aea',
|
2023-10-04 22:21:17 +00:00
|
|
|
|
fontSize: '24px',
|
|
|
|
|
fontWeight: '500',
|
|
|
|
|
lineHeight: '28.44px'
|
|
|
|
|
}}
|
2023-10-10 22:22:03 +00:00
|
|
|
|
>06</Typography>
|
|
|
|
|
<Typography variant={'h6'}
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: '24px',
|
|
|
|
|
fontWeight: '500',
|
|
|
|
|
lineHeight: '28.44px'
|
|
|
|
|
}}
|
|
|
|
|
>А/Б тестирование</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box maxWidth={'230px'}>
|
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: '18px',
|
|
|
|
|
fontWeight: '400',
|
|
|
|
|
lineHeight: '21px',
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Без программистов и сложных настроек - создавайте разные версии квизов
|
|
|
|
|
и сравнивайте их эффективность прямо внутри Опросника
|
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
</BoxFich>
|
|
|
|
|
</Box>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
2023-10-10 22:22:03 +00:00
|
|
|
|
maxWidth: '500px',
|
2023-10-04 22:21:17 +00:00
|
|
|
|
minHeight: '390px',
|
|
|
|
|
display: 'flex',
|
|
|
|
|
flexDirection: 'column',
|
|
|
|
|
alignItems: 'flex-start',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
padding: isMobile ? "40px 0 0 0" : '217px 22px 0 20px',
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
2023-10-10 22:22:03 +00:00
|
|
|
|
<Box
|
2023-10-04 22:21:17 +00:00
|
|
|
|
sx={{
|
2023-10-10 22:22:03 +00:00
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: isMobile ? "column-reverse" : "column",
|
|
|
|
|
gap: "47px",
|
|
|
|
|
alignItems: "flex-start",
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}}
|
2023-10-10 22:22:03 +00:00
|
|
|
|
>
|
|
|
|
|
<Box>
|
|
|
|
|
<Typography variant={'h6'}
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: '24px',
|
|
|
|
|
fontWeight: '500',
|
|
|
|
|
lineHeight: '28px',
|
|
|
|
|
width: '60%',
|
|
|
|
|
}}
|
|
|
|
|
>Первые 14 дней бесплатно</Typography>
|
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: '18px',
|
|
|
|
|
fontWeight: '400',
|
|
|
|
|
lineHeight: '21.33px',
|
|
|
|
|
marginTop: '32px',
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Пробуйте, экспериментируйте, а наша отзывчивая техническая поддержка
|
|
|
|
|
поможет и проконсультирует в любой момент,
|
|
|
|
|
больше вы не останетесь 1 на 1 со своими проблемами.
|
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
<Button variant="outlined"
|
|
|
|
|
onClick={() => setOpen((isOpened) => !isOpened)}
|
|
|
|
|
sx={{
|
|
|
|
|
textTransform: 'none',
|
|
|
|
|
color: '#ffffff',
|
|
|
|
|
backgroundColor: 'transparent',
|
|
|
|
|
fontSize: '18px',
|
|
|
|
|
borderRadius: '8px',
|
|
|
|
|
borderColor: '#ffffff',
|
|
|
|
|
}}
|
|
|
|
|
>Все возможности сервиса</Button>
|
|
|
|
|
</Box>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
<Button variant="contained"
|
|
|
|
|
sx={{
|
|
|
|
|
textTransform: 'none',
|
|
|
|
|
fontSize: '18px',
|
|
|
|
|
|
|
|
|
|
borderRadius: '8px',
|
|
|
|
|
padding: '10px 32px',
|
|
|
|
|
marginTop: '27px',
|
2023-10-10 22:22:03 +00:00
|
|
|
|
}}>
|
|
|
|
|
Создать квиз</Button>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
</SectionStyled>
|
|
|
|
|
)
|
|
|
|
|
}
|