Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

FeatureItem.jsx 562B

123456789101112131415161718192021222324252627
  1. import { Container, Typography } from '@mui/material';
  2. import Image from 'next/image';
  3. const FeatureItem = ({ image, alt, description }) => {
  4. return (
  5. <Container
  6. sx={{
  7. textAlign: 'center',
  8. display: 'flex',
  9. flexDirection: 'column',
  10. marginTop: { xs: '50px' },
  11. }}
  12. >
  13. <Image src={image} alt={alt} width={100} height={100} />
  14. <Typography
  15. sx={{
  16. mt: 6,
  17. px: 6,
  18. }}
  19. >
  20. {description}
  21. </Typography>
  22. </Container>
  23. );
  24. };
  25. export default FeatureItem;