import { Card, CardContent, Typography } from '@mui/material';
import { useTranslation } from 'react-i18next';

export function ContactNotFoundCard() {
  const { t } = useTranslation();

  return (
    <Card sx={{ width: '100%', p: 16, mt: 5, ml: 6 }}>
      <CardContent sx={{ display: 'flex', justifyContent: 'center', alignItems: 'center', height: '100%' }}>
        <Typography variant='h6' textAlign={'center'}>
          {t('general.noContact')}
        </Typography>
      </CardContent>
    </Card>
  );
}
