templategen/src/components/managers.js
2023-08-14 15:09:34 +03:00

271 lines
7.4 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from "react";
import Box from "@mui/material/Box";
import { Typography } from "@mui/material";
import Button from "@mui/material/Button";
import { styled } from "@mui/material/styles";
import SectionStyled from "./lib/section";
import Desktop from "../assets/image/Desktop.png";
import amoLabel from "../assets/image/amoLabel.png";
const BoxText = styled("div")(({ theme }) => ({
[theme.breakpoints.down(1100)]: {
width: "100%",
},
}));
const BoxImage = styled("div")(({ theme }) => ({
[theme.breakpoints.down(1100)]: {
width: "100%",
padding: "0",
},
}));
const BoxButton = styled("div")(({ theme }) => ({}));
function BoxFich(props) {
return (
<Box
sx={{
minHeight: "300px",
backgroundColor: "#252734",
borderRadius: "12px",
overflow: "hidden",
display: "flex",
flexWrap: "wrap",
marginBottom: "75px",
padding: "0 15px",
}}
>
<BoxText
sx={{
width: "50%",
padding: "20px",
}}
>
{props.children}
</BoxText>
<BoxImage
sx={{
padding: "39px 39px 0 0",
overflow: "hidden",
}}
>
<img src={Desktop} />
</BoxImage>
</Box>
);
}
export default function Component() {
return (
<SectionStyled
tag={"section"}
bg={"#333647"}
mwidth={"1160px"}
sxsect={{ minHeight: "1528px" }}
sxcont={{
display: "flex",
justifyContent: "space-between",
height: "100%",
padding: "70px 10px",
color: "#ffffff",
}}
>
<Box
sx={{
width: "100%",
display: "flex",
flexDirection: "column",
justifyContent: "space-around",
}}
>
<Box marginBottom={"76px"}>
<Typography
variant="h1"
sx={{
fontSize: {
xxs: "24px",
md: "36px",
},
fontWeight: "500",
lineHeight: {
xxs: "28px",
md: "43px",
},
}}
>
Менеджеры будут продавать больше
</Typography>
<Typography
sx={{
fontSize: "18px",
fontWeight: "400",
lineHeight: "21px",
marginTop: "20px",
}}
>
за счет автоматизации документооборота
</Typography>
</Box>
<BoxFich>
<Box>
<Typography
sx={{
color: "#7e2aea",
fontSize: "24px",
fontWeight: "500",
lineHeight: "28.44px",
}}
>
01
</Typography>
<Typography
variant={"h6"}
sx={{
fontSize: "24px",
fontWeight: "500",
lineHeight: "28.44px",
marginTop: "5px",
}}
>
Создавайте любые документы
</Typography>
</Box>
<Box>
<Typography
component="div"
sx={{
fontSize: "18px",
fontWeight: "400",
lineHeight: "21px",
marginTop: "30px",
}}
>
<ul>
<li>договоры, акты, счета, накладные и др.</li>
<li>в форматах docx или pdf</li>
<li>загружайте свои шаблоны</li>
<li>в любом количестве</li>
<li>и скачивайте их в любое время</li>
</ul>
</Typography>
</Box>
</BoxFich>
<BoxFich>
<Box>
<Typography
sx={{
color: "#7e2aea",
fontSize: "24px",
fontWeight: "500",
lineHeight: "28.44px",
}}
>
02
</Typography>
<Typography
variant={"h6"}
sx={{
fontSize: "24px",
fontWeight: "500",
lineHeight: "28.44px",
marginTop: "5px",
}}
>
Удобно использовать
</Typography>
</Box>
<Box>
<Typography
component="div"
sx={{
fontSize: "18px",
fontWeight: "400",
lineHeight: "21px",
marginTop: "30px",
}}
>
<ul>
<li>предпросмотр документа</li>
<li>
выделение подставляемых в шаблон значений
<br />в предпросмотре
</li>
<li>примечание о создании документа</li>
<li>и многое другое</li>
</ul>
</Typography>
</Box>
</BoxFich>
<BoxFich>
<Box>
<Typography
sx={{
color: "#7e2aea",
fontSize: "24px",
fontWeight: "500",
lineHeight: "28.44px",
}}
>
03
</Typography>
<Typography
variant={"h6"}
sx={{
fontSize: "24px",
fontWeight: "500",
lineHeight: "28.44px",
marginTop: "5px",
}}
>
PenaDoc умеет
</Typography>
</Box>
<Box>
<Typography
component="div"
sx={{
fontSize: "18px",
fontWeight: "400",
lineHeight: "21px",
marginTop: "30px",
}}
>
<ul>
<li>склонять по падежам</li>
<li>писать числа прописью</li>
<li>писать дату прописью</li>
<li>писать сумму прописью</li>
<li>сокращать ФИО до инициалов</li>
<li>несколько одновременных преобразований данных</li>
<li>например: вычислить НДС и перевести его в строковый формат</li>
</ul>
</Typography>
</Box>
</BoxFich>
<BoxButton>
<Button
variant="contained"
component="button"
sx={{
maxWidth: "350px",
textTransform: "none",
borderRadius: "8px",
fontSize: "18px",
fontWeight: "normal",
backgroundColor: "#7E2AEA",
color: "#ffffff",
marginTop: "20px",
}}
>
<img src={amoLabel} style={{ marginRight: "15px", filter: "invert(100%)" }} />
Установить самостоятельно
</Button>
</BoxButton>
</Box>
</SectionStyled>
);
}