import { Typography } from '@mui/material'; import { useTranslation } from 'next-i18next'; const EmptyCart = () => { const { t } = useTranslation('cart'); return ( {t('cart:empty')} ); }; export default EmptyCart;