import React from 'react'; import { useI18nContext } from '../../../hooks/useI18nContext'; import Typography from '../../../components/ui/typography/typography'; import { TEXT_ALIGN } from '../../../helpers/constants/design-system'; const WelcomeFooter = () => { const t = useI18nContext(); return ( <>
{t('welcome')}
{t('metamaskDescription')} {t('happyToSeeYou')} ); }; export default WelcomeFooter;