Title.jsx 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. import {Box, Typography} from "@mui/material";
  2. import rom from "../img/our team/romb.png";
  3. const Title = ({subtitle, title}) => {
  4. return (
  5. <Box
  6. display='flex'
  7. flexDirection='column'
  8. justifyContent='center'
  9. alignItems='center'
  10. >
  11. <Typography
  12. fontFamily='sarif'
  13. variant='h5'
  14. color='#000'
  15. letterSpacing='5px'
  16. textAlign='center'
  17. marginLeft='5px'
  18. marginBottom='10px'
  19. >
  20. {subtitle}
  21. </Typography>
  22. <img style={{
  23. width: '7px',
  24. maxHeight: '7px',
  25. }} src={rom} alt='item'/>
  26. <Typography
  27. variant='h4'
  28. color='#000'
  29. letterSpacing='5px'
  30. textAlign='center'
  31. marginLeft='5px'
  32. marginTop='10px'
  33. >
  34. {title}
  35. </Typography>
  36. </Box>
  37. )
  38. }
  39. export default Title