add themes

This commit is contained in:
nflnkr 2022-11-19 23:31:19 +03:00
parent 0c6f0afd2a
commit f71edb383f
2 changed files with 6 additions and 4 deletions

@ -25,7 +25,7 @@ export default function Navbar() {
alignItems: "center", alignItems: "center",
}} }}
> >
<PenaLogo width={100} /> <PenaLogo width={100} theme="dark" />
<IconButton sx={{ p: 0, height: "30px", width: "30px" }}> <IconButton sx={{ p: 0, height: "30px", width: "30px" }}>
<MenuIcon sx={{ height: "30px", width: "30px" }} /> <MenuIcon sx={{ height: "30px", width: "30px" }} />
</IconButton> </IconButton>

@ -34,7 +34,7 @@ export default function Section1() {
mb: upMd ? undefined : "30px", mb: upMd ? undefined : "30px",
}} }}
> >
{upMd && <PenaLogo width={180}/>} {upMd && <PenaLogo width={180} theme="dark" />}
<Typography variant="h2">Сервисы прокачки маркетинга</Typography> <Typography variant="h2">Сервисы прокачки маркетинга</Typography>
</Box> </Box>
<Box <Box
@ -80,8 +80,10 @@ export default function Section1() {
<Typography sx={{ mb: "40px" }}>И все это в едином кабинете</Typography> <Typography sx={{ mb: "40px" }}>И все это в едином кабинете</Typography>
<Button <Button
variant="contained" variant="contained"
backgroundColor={theme.palette.custom.brightPurple.main} sx={{
textColor={theme.palette.primary.main} backgroundColor: theme.palette.custom.brightPurple.main,
textColor: theme.palette.primary.main,
}}
>Подробнее</Button> >Подробнее</Button>
</Box> </Box>
</SectionWrapper > </SectionWrapper >