2022-11-18 16:51:10 +00:00
|
|
|
|
import { Box, Typography, useMediaQuery, useTheme } from "@mui/material";
|
2023-05-17 17:05:21 +00:00
|
|
|
|
import WideTemplCard from "@components/wideTemplCard";
|
|
|
|
|
import TemplCardPhonePink from "@components/templCardPhonePink";
|
2023-03-19 12:30:40 +00:00
|
|
|
|
import SectionWrapper from "@components/SectionWrapper";
|
2023-08-28 12:09:25 +00:00
|
|
|
|
import { PenaLink } from "@frontend/kitui";
|
|
|
|
|
import { Link as RouterLink } from "react-router-dom";
|
2022-11-17 12:25:23 +00:00
|
|
|
|
|
2023-08-23 12:23:35 +00:00
|
|
|
|
export default function Section2() {
|
2023-08-27 17:46:42 +00:00
|
|
|
|
const theme = useTheme();
|
|
|
|
|
const upMd = useMediaQuery(theme.breakpoints.up("md"));
|
2023-05-12 08:35:54 +00:00
|
|
|
|
|
2023-09-04 20:01:24 +00:00
|
|
|
|
const isTablet = useMediaQuery(theme.breakpoints.down(1000));
|
|
|
|
|
|
2023-08-27 17:46:42 +00:00
|
|
|
|
return (
|
|
|
|
|
<SectionWrapper
|
|
|
|
|
component="section"
|
|
|
|
|
maxWidth="lg"
|
|
|
|
|
outerContainerSx={{
|
|
|
|
|
backgroundColor: theme.palette.bg.dark,
|
2023-09-11 13:06:14 +00:00
|
|
|
|
mb: "-68px",
|
2023-08-27 17:46:42 +00:00
|
|
|
|
}}
|
|
|
|
|
sx={{
|
|
|
|
|
pt: upMd ? "90px" : "50px",
|
2023-09-04 20:01:24 +00:00
|
|
|
|
px: isTablet ? (upMd ? "40px" : "18px") : "20px",
|
2023-08-27 17:46:42 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: upMd ? "row" : "column",
|
2023-09-11 13:06:14 +00:00
|
|
|
|
gap: isTablet ? "16.5%" : "3.5%",
|
2023-08-27 17:46:42 +00:00
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Typography
|
|
|
|
|
variant="h4"
|
|
|
|
|
sx={{
|
|
|
|
|
flexGrow: 1,
|
|
|
|
|
flexBasis: "31%",
|
|
|
|
|
maxWidth: "50%",
|
|
|
|
|
}}
|
2023-05-12 08:35:54 +00:00
|
|
|
|
>
|
2023-10-24 11:49:39 +00:00
|
|
|
|
Хватит сливать бюджет!
|
2023-08-27 17:46:42 +00:00
|
|
|
|
</Typography>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
gap: "30px",
|
|
|
|
|
alignItems: "start",
|
|
|
|
|
flexGrow: 1,
|
|
|
|
|
flexBasis: "65.5%",
|
|
|
|
|
mt: upMd ? "10px" : "30px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
2023-09-04 20:01:24 +00:00
|
|
|
|
<Typography sx={{ fontSize: upMd ? "18px" : "17px" }} maxWidth="560px">
|
2023-10-24 11:49:39 +00:00
|
|
|
|
Надежные сервисы, которые не подведут. Увеличение эффективности рекламной кампании и увеличение ROI и ROMI на десятки процентов при использовании всех наших продуктов.
|
2023-08-27 17:46:42 +00:00
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
2023-10-24 11:49:39 +00:00
|
|
|
|
{upMd ? <WideTemplCard name="PenaDoc" desc="Сервис автоматизации, избавляющий от рутины
|
|
|
|
|
в документообороте. 1 раз делаешь шаблон и используешь всю жизнь " light={false} sx={{ marginTop: "126px" }} /> : <TemplCardPhonePink />}
|
2023-05-17 17:05:21 +00:00
|
|
|
|
|
2023-10-24 11:49:39 +00:00
|
|
|
|
|
2023-08-27 17:46:42 +00:00
|
|
|
|
</SectionWrapper>
|
|
|
|
|
);
|
2023-08-22 10:28:22 +00:00
|
|
|
|
}
|