2023-12-31 02:53:25 +00:00
|
|
|
|
import React, { useState } from "react";
|
|
|
|
|
import Box from "@mui/material/Box";
|
2024-01-13 11:58:06 +00:00
|
|
|
|
import { SxProps, Typography, useMediaQuery, useTheme } from "@mui/material";
|
2023-12-31 02:53:25 +00:00
|
|
|
|
import SectionStyled from "./SectionStyled";
|
2023-10-04 22:21:17 +00:00
|
|
|
|
import Button from "@mui/material/Button";
|
2023-10-07 07:09:00 +00:00
|
|
|
|
// import Desktop from '../../assets/LandingPict/Desktop.png';
|
2023-12-31 02:53:25 +00:00
|
|
|
|
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";
|
2024-01-09 21:10:19 +00:00
|
|
|
|
import LandingImg from "./images/LandingImg.png";
|
2023-10-23 09:37:47 +00:00
|
|
|
|
|
2023-10-04 22:21:17 +00:00
|
|
|
|
interface Props {
|
2023-12-31 02:53:25 +00:00
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
image: string;
|
2024-01-09 21:10:19 +00:00
|
|
|
|
sx?: SxProps;
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function BoxFich(props: Props) {
|
2023-12-31 02:53:25 +00:00
|
|
|
|
const theme = useTheme();
|
|
|
|
|
const isMobile = useMediaQuery(theme.breakpoints.down(600));
|
|
|
|
|
const isTabletOnly = useMediaQuery(theme.breakpoints.between(600, 1000));
|
|
|
|
|
return (
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
maxWidth: isTabletOnly ? "801px" : "500px",
|
2024-01-13 11:58:06 +00:00
|
|
|
|
minHeight: isTabletOnly ? "252px" : "350px",
|
2023-12-31 02:53:25 +00:00
|
|
|
|
backgroundColor: "#252734",
|
|
|
|
|
borderRadius: "12px",
|
|
|
|
|
overflow: "hidden",
|
|
|
|
|
display: "flex",
|
2024-01-13 11:58:06 +00:00
|
|
|
|
flexDirection: isTabletOnly ? "row" : "column",
|
2023-12-31 02:53:25 +00:00
|
|
|
|
justifyContent: isMobile ? "space-between" : undefined,
|
|
|
|
|
height: isMobile ? "450px" : undefined,
|
2024-01-09 21:10:19 +00:00
|
|
|
|
...props.sx,
|
2023-12-31 02:53:25 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
justifyContent: "space-between",
|
|
|
|
|
width: "100%",
|
|
|
|
|
minHeight: "50%",
|
|
|
|
|
padding: "20px",
|
|
|
|
|
flexWrap: "wrap",
|
|
|
|
|
boxSizing: "border-box",
|
2024-01-13 11:58:06 +00:00
|
|
|
|
flexDirection: isMobile ? "column" : "row",
|
|
|
|
|
gap: "15px",
|
2023-12-31 02:53:25 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
{props.children}
|
|
|
|
|
</Box>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
justifyContent: "end",
|
|
|
|
|
alignItems: "end",
|
2024-01-09 21:10:19 +00:00
|
|
|
|
mt: "auto",
|
2023-12-31 02:53:25 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<img src={props.image} width={"96%"} />
|
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default function Component() {
|
|
|
|
|
const theme = useTheme();
|
|
|
|
|
const isMobile = useMediaQuery(theme.breakpoints.down(600));
|
|
|
|
|
const isTablet = useMediaQuery(theme.breakpoints.down(1000));
|
|
|
|
|
const isTabletOnly = useMediaQuery(theme.breakpoints.between(600, 1000));
|
|
|
|
|
return (
|
|
|
|
|
<SectionStyled
|
|
|
|
|
tag={"section"}
|
|
|
|
|
bg={"#333647"}
|
|
|
|
|
mwidth={"1160px"}
|
|
|
|
|
sxcont={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
justifyContent: "space-between",
|
2024-01-13 11:58:06 +00:00
|
|
|
|
|
|
|
|
|
padding: isMobile ? "70px 16px" : isTablet ? "80px 40px" : "80px 0",
|
2023-12-31 02:53:25 +00:00
|
|
|
|
color: "#ffffff",
|
|
|
|
|
flexWrap: "wrap",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
gap: isMobile ? "25px" : "120px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
<Box
|
2023-12-31 02:53:25 +00:00
|
|
|
|
sx={{
|
|
|
|
|
maxWidth: "400px",
|
|
|
|
|
minHeight: "84px",
|
|
|
|
|
marginBottom: isMobile ? 0 : "-55px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Typography
|
|
|
|
|
variant="h1"
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: "36px",
|
|
|
|
|
fontWeight: "500",
|
|
|
|
|
lineHeight: "43px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Что по фичам?
|
|
|
|
|
</Typography>
|
|
|
|
|
<Typography
|
2023-10-04 22:21:17 +00:00
|
|
|
|
sx={{
|
2023-12-31 02:53:25 +00:00
|
|
|
|
fontSize: "18px",
|
|
|
|
|
fontWeight: "400",
|
|
|
|
|
lineHeight: "21px",
|
|
|
|
|
margin: "20px 0 10px 0",
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}}
|
2023-12-31 02:53:25 +00:00
|
|
|
|
>
|
|
|
|
|
Самый функциональный конструктор квизов
|
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
2024-01-13 11:58:06 +00:00
|
|
|
|
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: isTablet ? "column-reverse" : "row",
|
|
|
|
|
justifyContent: "space-between",
|
|
|
|
|
gap: "50px",
|
|
|
|
|
maxWidth: "1160px",
|
|
|
|
|
minHeight: "500px",
|
|
|
|
|
p: isTablet ? "40px 20px 40px" : "40px",
|
|
|
|
|
background: "#262835",
|
|
|
|
|
borderRadius: "12px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<img
|
|
|
|
|
style={{
|
|
|
|
|
maxWidth: isTablet ? "880px" : "554px",
|
|
|
|
|
width: "100%",
|
|
|
|
|
maxHeight: isTablet ? "666px" : "420px",
|
|
|
|
|
height: "100%",
|
|
|
|
|
}}
|
|
|
|
|
src={LandingImg}
|
|
|
|
|
alt="img"
|
|
|
|
|
/>
|
|
|
|
|
<Box sx={{ maxWidth: "461px", width: "100%" }}>
|
2023-12-31 02:53:25 +00:00
|
|
|
|
<Typography
|
2024-01-09 21:10:19 +00:00
|
|
|
|
variant={"h3"}
|
2023-12-31 02:53:25 +00:00
|
|
|
|
sx={{
|
2024-01-13 11:58:06 +00:00
|
|
|
|
fontSize: "36px",
|
2023-12-31 02:53:25 +00:00
|
|
|
|
fontWeight: "500",
|
2024-01-13 11:58:06 +00:00
|
|
|
|
lineHeight: "normal",
|
2023-12-31 02:53:25 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
2024-01-13 11:58:06 +00:00
|
|
|
|
Удобный конструктор ветвления
|
2023-12-31 02:53:25 +00:00
|
|
|
|
</Typography>
|
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: "18px",
|
|
|
|
|
fontWeight: "400",
|
|
|
|
|
lineHeight: "21px",
|
2024-01-13 11:58:06 +00:00
|
|
|
|
m: isTablet ? "20px 0 40px" : "20px 0 98px",
|
|
|
|
|
color: "#ffffffb3",
|
2023-12-31 02:53:25 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Внутренняя аналитика считает конверсию квиза на каждом шаге,
|
|
|
|
|
показывает развернутую статистику по ответам и пользователям
|
|
|
|
|
</Typography>
|
2024-01-13 11:58:06 +00:00
|
|
|
|
|
2024-01-13 19:59:19 +00:00
|
|
|
|
{/*<Button*/}
|
|
|
|
|
{/* variant={"contained"}*/}
|
|
|
|
|
{/* sx={{*/}
|
|
|
|
|
{/* width: "124px",*/}
|
|
|
|
|
{/* height: "30px",*/}
|
|
|
|
|
{/* padding: "4px 8px",*/}
|
|
|
|
|
{/* fontSize: "12px",*/}
|
|
|
|
|
{/* }}*/}
|
|
|
|
|
{/*>*/}
|
|
|
|
|
{/* Как использовать*/}
|
|
|
|
|
{/*</Button>*/}
|
2023-12-31 02:53:25 +00:00
|
|
|
|
|
2024-01-13 19:59:19 +00:00
|
|
|
|
{/*<Box sx={{ mt: "28px" }}>*/}
|
|
|
|
|
{/* <Typography*/}
|
|
|
|
|
{/* sx={{ color: "#9A9AAF", fontSize: "18px", mb: "5px" }}*/}
|
|
|
|
|
{/* >*/}
|
|
|
|
|
{/* 1. Перетащите вопрос из списка в карту ветвления*/}
|
|
|
|
|
{/* </Typography>*/}
|
|
|
|
|
{/* <Typography sx={{ color: "#9A9AAF", fontSize: "18px" }}>*/}
|
|
|
|
|
{/* 2. Добавьте условия{" "}*/}
|
|
|
|
|
{/* </Typography>*/}
|
|
|
|
|
{/*</Box>*/}
|
2024-01-13 11:58:06 +00:00
|
|
|
|
</Box>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
</Box>
|
2024-01-13 11:58:06 +00:00
|
|
|
|
|
2023-12-31 02:53:25 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
2024-01-13 11:58:06 +00:00
|
|
|
|
gap: isMobile ? "25px" : isTablet ? "40px" : "45px",
|
2023-12-31 02:53:25 +00:00
|
|
|
|
}}
|
2023-10-04 22:21:17 +00:00
|
|
|
|
>
|
2023-12-31 02:53:25 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: "flex",
|
2024-01-13 11:58:06 +00:00
|
|
|
|
flexDirection: isTablet ? "column" : "-moz-initial",
|
|
|
|
|
gap: isMobile ? "25px" : isTablet ? "40px" : "45px",
|
|
|
|
|
justifyContent: "space-between",
|
2023-12-31 02:53:25 +00:00
|
|
|
|
alignItems: "flex-start",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Box>
|
2024-01-09 21:20:08 +00:00
|
|
|
|
<Typography sx={{ color: "#9A9AAF", fontSize: "18px" }}>
|
|
|
|
|
Другие преимущества:
|
|
|
|
|
</Typography>
|
|
|
|
|
<BoxFich sx={{ mt: isTablet ? "40px" : "75px" }} image={Desktop1}>
|
|
|
|
|
<Box sx={{ maxWidth: isTabletOnly ? "244px" : "174px" }}>
|
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
color: "#7e2aea",
|
|
|
|
|
fontSize: "24px",
|
|
|
|
|
fontWeight: "500",
|
|
|
|
|
lineHeight: "28.44px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
01
|
|
|
|
|
</Typography>
|
|
|
|
|
<Typography
|
|
|
|
|
variant={"h6"}
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: "24px",
|
|
|
|
|
fontWeight: "500",
|
|
|
|
|
lineHeight: "28.44px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Привязка к вашему домену
|
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box sx={{ maxWidth: isTabletOnly ? "300px" : "230px" }}>
|
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: "18px",
|
|
|
|
|
fontWeight: "400",
|
|
|
|
|
lineHeight: "21px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Привяжите квиз к своему брендовому домену и получайте
|
|
|
|
|
максимальную отдачу от каждой заявки
|
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
</BoxFich>
|
|
|
|
|
</Box>
|
|
|
|
|
<BoxFich sx={{ ml: isTablet ? "auto" : "0" }} image={Desktop5}>
|
2024-01-13 11:58:06 +00:00
|
|
|
|
<Box maxWidth={"174px"}>
|
2024-01-09 21:20:08 +00:00
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
color: "#7e2aea",
|
|
|
|
|
fontSize: "24px",
|
|
|
|
|
fontWeight: "500",
|
|
|
|
|
lineHeight: "28.44px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
02
|
|
|
|
|
</Typography>
|
|
|
|
|
<Typography
|
|
|
|
|
variant={"h6"}
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: "24px",
|
|
|
|
|
fontWeight: "500",
|
|
|
|
|
lineHeight: "28.44px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Повышение конверсии
|
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box maxWidth={"233px"}>
|
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: "18px",
|
|
|
|
|
fontWeight: "400",
|
|
|
|
|
lineHeight: "21px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Конверсию можно увеличить, добавив тающую скидку, консультанта
|
|
|
|
|
с подсказками или бонус, который пользователь получит в конце
|
2024-01-27 01:52:49 +00:00
|
|
|
|
квиза<br></br>(в разработке)
|
2024-01-09 21:20:08 +00:00
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
</BoxFich>
|
|
|
|
|
</Box>
|
|
|
|
|
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: isTablet ? "column" : "-moz-initial",
|
|
|
|
|
gap: isMobile ? "25px" : isTablet ? "40px" : "45px",
|
|
|
|
|
justifyContent: "space-between",
|
|
|
|
|
alignItems: "flex-start",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<BoxFich sx={{ mt: isTablet ? "0" : "75px" }} image={Desktop2}>
|
2024-01-13 11:58:06 +00:00
|
|
|
|
<Box maxWidth={"174px"}>
|
2024-01-09 21:20:08 +00:00
|
|
|
|
<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>
|
2024-01-27 01:52:49 +00:00
|
|
|
|
<Typography>(в разработке)</Typography>
|
2024-01-09 21:20:08 +00:00
|
|
|
|
</Box>
|
|
|
|
|
<Box maxWidth={"230px"}>
|
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: "18px",
|
|
|
|
|
fontWeight: "400",
|
|
|
|
|
lineHeight: "21px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Внутренняя аналитика считает конверсию квиза на каждом шаге,
|
|
|
|
|
показывает развернутую статистику по ответам и пользователям
|
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
</BoxFich>
|
|
|
|
|
<BoxFich sx={{ ml: isTablet ? "auto" : "0" }} image={Desktop6}>
|
2024-01-13 11:58:06 +00:00
|
|
|
|
<Box maxWidth={"174px"}>
|
2024-01-09 21:20:08 +00:00
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
color: "#7e2aea",
|
|
|
|
|
fontSize: "24px",
|
|
|
|
|
fontWeight: "500",
|
|
|
|
|
lineHeight: "28.44px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
04
|
|
|
|
|
</Typography>
|
|
|
|
|
<Typography
|
|
|
|
|
variant={"h6"}
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: "24px",
|
|
|
|
|
fontWeight: "500",
|
|
|
|
|
lineHeight: "28.44px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
2024-01-27 01:52:49 +00:00
|
|
|
|
Расширенные настройки дизайна
|
2024-01-09 21:20:08 +00:00
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box maxWidth={"230px"}>
|
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: "18px",
|
|
|
|
|
fontWeight: "400",
|
|
|
|
|
lineHeight: "21px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Настройте цвета, шрифт и выберите формат стартовой страницы,
|
|
|
|
|
чтобы сделать свой квиз уникальным
|
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
</BoxFich>
|
|
|
|
|
</Box>
|
|
|
|
|
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: isTablet ? "column" : "-moz-initial",
|
|
|
|
|
gap: isMobile ? "25px" : isTablet ? "40px" : "0",
|
|
|
|
|
justifyContent: "space-between",
|
|
|
|
|
alignItems: "flex-start",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<BoxFich sx={{ mt: isTablet ? "0" : "75px" }} image={Desktop3}>
|
2024-01-13 11:58:06 +00:00
|
|
|
|
<Box maxWidth={"174px"}>
|
2024-01-09 21:20:08 +00:00
|
|
|
|
<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",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Самый удобный инструмент для проведения исследований
|
|
|
|
|
аудитории, больше вас не сдерживают никакие ограничения.
|
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
</BoxFich>
|
|
|
|
|
<BoxFich sx={{ ml: isTablet ? "auto" : "0" }} image={Desktop7}>
|
2024-01-13 11:58:06 +00:00
|
|
|
|
<Box maxWidth={"174px"}>
|
2024-01-09 21:20:08 +00:00
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
color: "#7e2aea",
|
|
|
|
|
fontSize: "24px",
|
|
|
|
|
fontWeight: "500",
|
|
|
|
|
lineHeight: "28.44px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
06
|
|
|
|
|
</Typography>
|
|
|
|
|
<Typography
|
|
|
|
|
variant={"h6"}
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: "24px",
|
|
|
|
|
fontWeight: "500",
|
|
|
|
|
lineHeight: "28.44px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
А/Б тестирование
|
|
|
|
|
</Typography>
|
2024-01-27 01:52:49 +00:00
|
|
|
|
<Typography>(в разработке)</Typography>
|
2024-01-09 21:20:08 +00:00
|
|
|
|
</Box>
|
|
|
|
|
<Box maxWidth={"230px"}>
|
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: "18px",
|
|
|
|
|
fontWeight: "400",
|
|
|
|
|
lineHeight: "21px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Без программистов и сложных настроек - создавайте разные
|
|
|
|
|
версии квизов и сравнивайте их эффективность прямо внутри
|
|
|
|
|
Опросника
|
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
</BoxFich>
|
|
|
|
|
</Box>
|
|
|
|
|
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: isTablet ? "column" : "-moz-initial",
|
|
|
|
|
gap: isMobile ? "25px" : isTablet ? "40px" : "45px",
|
|
|
|
|
justifyContent: "space-between",
|
|
|
|
|
alignItems: "flex-start",
|
|
|
|
|
mt: isTablet ? "0" : "75px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<BoxFich image={Desktop4}>
|
2024-01-13 11:58:06 +00:00
|
|
|
|
<Box maxWidth={"174px"}>
|
2024-01-09 21:20:08 +00:00
|
|
|
|
<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>
|
2024-01-27 01:52:49 +00:00
|
|
|
|
<Typography>(в разработке)</Typography>
|
2024-01-09 21:20:08 +00:00
|
|
|
|
</Box>
|
|
|
|
|
<Box maxWidth={"234px"}>
|
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: "18px",
|
|
|
|
|
fontWeight: "400",
|
|
|
|
|
lineHeight: "21px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Тест увеличит вовлеченность аудитории, покажет правильные или
|
|
|
|
|
неправильные ответы и все это в игровой форме
|
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
</BoxFich>
|
|
|
|
|
|
|
|
|
|
<Box sx={{ maxWidth: "500px", minHeight: "350px" }}>
|
2024-01-13 11:58:06 +00:00
|
|
|
|
{/*{isMobile && (*/}
|
|
|
|
|
{/* <Button*/}
|
|
|
|
|
{/* sx={{*/}
|
|
|
|
|
{/* width: "100%",*/}
|
|
|
|
|
{/* height: "44px",*/}
|
|
|
|
|
{/* borderRadius: "8px",*/}
|
|
|
|
|
{/* border: "1px solid #FFF",*/}
|
|
|
|
|
{/* color: "white",*/}
|
|
|
|
|
{/* mb: "40px",*/}
|
|
|
|
|
{/* background: "transparent",*/}
|
|
|
|
|
{/* }}*/}
|
|
|
|
|
{/* >*/}
|
|
|
|
|
{/* Все возможности сервиса*/}
|
|
|
|
|
{/* </Button>*/}
|
|
|
|
|
{/*)}*/}
|
2023-12-31 02:53:25 +00:00
|
|
|
|
<Typography
|
|
|
|
|
variant={"h6"}
|
2023-10-04 22:21:17 +00:00
|
|
|
|
sx={{
|
2023-12-31 02:53:25 +00:00
|
|
|
|
fontSize: "24px",
|
|
|
|
|
fontWeight: "500",
|
2024-01-13 11:58:06 +00:00
|
|
|
|
lineHeight: "normal",
|
|
|
|
|
maxWidth: "293px",
|
2023-10-04 22:21:17 +00:00
|
|
|
|
}}
|
2023-12-31 02:53:25 +00:00
|
|
|
|
>
|
|
|
|
|
Первые 14 дней бесплатно
|
|
|
|
|
</Typography>
|
|
|
|
|
<Typography
|
|
|
|
|
sx={{
|
|
|
|
|
fontSize: "18px",
|
|
|
|
|
fontWeight: "400",
|
2024-01-13 11:58:06 +00:00
|
|
|
|
lineHeight: "21px",
|
|
|
|
|
m: "20px 0 30px",
|
|
|
|
|
color: "#fff",
|
2023-12-31 02:53:25 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
Пробуйте, экспериментируйте, а наша отзывчивая техническая
|
|
|
|
|
поддержка поможет и проконсультирует в любой момент, больше вы
|
|
|
|
|
не останетесь 1 на 1 со своими проблемами.
|
|
|
|
|
</Typography>
|
2024-01-13 11:58:06 +00:00
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
gap: "30px",
|
|
|
|
|
p: "20px 0 20px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
{/*{!isMobile && (*/}
|
|
|
|
|
{/* <Button*/}
|
|
|
|
|
{/* sx={{*/}
|
|
|
|
|
{/* width: "278px",*/}
|
|
|
|
|
{/* height: "44px",*/}
|
|
|
|
|
{/* borderRadius: "8px",*/}
|
|
|
|
|
{/* border: "1px solid #FFF",*/}
|
|
|
|
|
{/* color: "white",*/}
|
|
|
|
|
{/* background: "transparent",*/}
|
|
|
|
|
{/* }}*/}
|
|
|
|
|
{/* >*/}
|
|
|
|
|
{/* Все возможности сервиса*/}
|
|
|
|
|
{/* </Button>*/}
|
|
|
|
|
{/*)}*/}
|
|
|
|
|
|
2024-01-13 19:59:19 +00:00
|
|
|
|
{/*<Button*/}
|
|
|
|
|
{/* variant={"contained"}*/}
|
|
|
|
|
{/* sx={{*/}
|
|
|
|
|
{/* width: "180px",*/}
|
|
|
|
|
{/* height: "44px",*/}
|
|
|
|
|
{/* }}*/}
|
|
|
|
|
{/*>*/}
|
|
|
|
|
{/* Создать квиз*/}
|
|
|
|
|
{/*</Button>*/}
|
2024-01-13 11:58:06 +00:00
|
|
|
|
</Box>
|
2023-10-04 22:21:17 +00:00
|
|
|
|
</Box>
|
2023-12-31 02:53:25 +00:00
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
</SectionStyled>
|
|
|
|
|
);
|
|
|
|
|
}
|