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