import Link from 'next/link'; import React from 'react'; import { useTranslation } from 'react-i18next'; import Logo from '../../common/Logo'; const SignUpClosed: React.FC = () => { const { t } = useTranslation(); return (

{t('SIGN_UP_CLOSED_TITLE')}

{t('SIGN_UP_CLOSED_SUBTITLE')}


{t('HAVE_ACCOUNT')}

); }; export default SignUpClosed;