front-hub/src/components/landing/Section5.tsx

61 lines
2.2 KiB
TypeScript
Raw Normal View History

2022-11-17 12:25:23 +00:00
import { Box, Typography, useTheme } from "@mui/material";
import Button from "../Button";
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 */}
<Button
fullWidth
variant="outlined"
>Подробнее</Button>
<Button
fullWidth
variant="contained"
>Подробнее</Button>
</Box>
</Box>
<Box
sx={{
maxWidth: "460px",
}}
>
<Typography>Сервисы помогают предпринимателям, маркетологам и агентствам
сделать интернет-маркетинг прозрачным и эффективным. С нами не придется
тратить рекламный бюджет впустую и терять клиентов на сайте.</Typography>
</Box>
</Box>
</SectionWrapper>
);
}