import React from "react";
import Box from "@mui/material/Box";
import { Typography } from "@mui/material";
import SectionStyled from "./SectionStyled";
import { styled } from "@mui/material/styles";
const BoxCardBlog = styled("div")(({ theme }) => ({
[theme.breakpoints.down("md")]: {
width: "100%",
maxWidth: "none",
},
}));
function CardBlog() {
return (
01.09.2022
Как продвигать квиз за 10 000 ₽ в месяц
);
}
export default function Component() {
return (
Блог
Кейсы, дайджесты и отборные рекомендации
);
}