import { Box, Typography, useMediaQuery, useTheme, Button, SxProps, Theme, } from "@mui/material"; import ArrowForwardIcon from "@mui/icons-material/ArrowForward"; import CardWithLink from "@components/CardWithLink"; import UnderlinedLink from "@components/UnderlinedLink"; import SectionWrapper from "@components/SectionWrapper"; import card1Image from "@root/assets/landing/card1.png"; import card2Image from "@root/assets/landing/card2.png"; import card3Image from "@root/assets/landing/card3.png"; import cardImageBig from "@root/assets/landing/card1big.png"; interface Props { light?: boolean; sx?: SxProps; } export default function ({ light = true, sx }: Props) { const theme = useTheme(); const upMd = useMediaQuery(theme.breakpoints.up("md")); return ( Шаблонизатор Текст- это текст, который имеет некоторые характеристики реального письменного текс {light ? ( ) : ( } sx={{ mt: "auto", }} /> )} ); }