import React from 'react';
import Box from '@mui/material/Box';
import {Typography} from "@mui/material";
import Button from "@mui/material/Button";
import SectionStyled from './SectionStyled';
import {styled} from "@mui/material/styles";
const BoxServies = styled('div')(({ theme }) => ({
[theme.breakpoints.down('md')]: {
textAlign: 'center',
width: '100%',
},
}));
const buttonTemplates = ['Услуги', 'Развлечения', 'Строительство и ремонт', 'E-commerce']
function Servises () {
return (
Вдохновляющие фото и видео для свадьбы
)
}
export default function Component () {
const [select, setSelect] = React.useState(0)
return (
Начните с готового шаблона
73 готовых шаблонов разных ниш, постоянно пополняем
{buttonTemplates.map( (element, index) => (
))}
)
}