import { Container, Typography } from '@mui/material'; import { useTranslation } from 'next-i18next'; import Image from 'next/image'; const FeatureItem = ({ image, alt, description }) => { const { t } = useTranslation('home'); return ( {alt} {t(description)} ); }; export default FeatureItem;