2022-11-17 20:56:17 +00:00
|
|
|
|
import { Box, Typography, useTheme } from "@mui/material";
|
|
|
|
|
import CustomButton from "../Button";
|
2022-11-17 12:25:23 +00:00
|
|
|
|
import SectionWrapper from "../SectionWrapper";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default function Section5() {
|
|
|
|
|
const theme = useTheme();
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<SectionWrapper
|
|
|
|
|
component="section"
|
|
|
|
|
maxWidth="lg"
|
|
|
|
|
sx={{
|
|
|
|
|
backgroundColor: theme.palette.custom.brightPurple.main,
|
|
|
|
|
}}
|
|
|
|
|
innerSx={{
|
|
|
|
|
pt: "100px",
|
|
|
|
|
pb: "100px",
|
|
|
|
|
px: "20px"
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
justifyContent: "space-between",
|
|
|
|
|
gap: "20px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Box>
|
|
|
|
|
<Typography variant="h4" sx={{ mb: "62px" }}>Остались вопросы?</Typography>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
justifyContent: "space-between",
|
|
|
|
|
gap: "24px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
{/** extract buttons as components */}
|
2022-11-17 20:56:17 +00:00
|
|
|
|
<CustomButton
|
2022-11-17 12:25:23 +00:00
|
|
|
|
fullWidth
|
|
|
|
|
variant="outlined"
|
2022-11-17 20:56:17 +00:00
|
|
|
|
>Подробнее</CustomButton>
|
|
|
|
|
<CustomButton
|
2022-11-17 12:25:23 +00:00
|
|
|
|
fullWidth
|
|
|
|
|
variant="contained"
|
2022-11-17 20:56:17 +00:00
|
|
|
|
>Подробнее</CustomButton>
|
2022-11-17 12:25:23 +00:00
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box
|
|
|
|
|
sx={{
|
|
|
|
|
maxWidth: "460px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Typography>Сервисы помогают предпринимателям, маркетологам и агентствам
|
|
|
|
|
сделать интернет-маркетинг прозрачным и эффективным. С нами не придется
|
|
|
|
|
тратить рекламный бюджет впустую и терять клиентов на сайте.</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
</SectionWrapper>
|
|
|
|
|
);
|
|
|
|
|
}
|