import { Dialog, DialogTitle, Box, Typography } from '@mui/material' import { useTranslation } from 'next-i18next' export default function HelpModal ({ open, onClose }) { const { t } = useTranslation('home') return ( {t('help_header')} {t('help_body_1')} {t('help_body_2')} {t('help_body_3')} ) }