import { Container, Divider, Typography } from '@mui/material'; import { Box } from '@mui/system'; import { useTranslation } from 'next-i18next'; import Image from 'next/image'; import FeatureItem from './FeatureItem'; import items from './items'; const Features = () => { const { t } = useTranslation('home'); return ( <> {t('home:coffeeTitle')} profile {items.map((item) => ( ))} ); }; export default Features;