2021-09-08 22:08:23 +02:00
|
|
|
import React from 'react';
|
|
|
|
import { useI18nContext } from '../../../hooks/useI18nContext';
|
|
|
|
|
2022-11-16 21:16:43 +01:00
|
|
|
import Typography from '../../../components/ui/typography/typography';
|
|
|
|
import { TEXT_ALIGN } from '../../../helpers/constants/design-system';
|
|
|
|
|
2021-09-08 22:08:23 +02:00
|
|
|
const WelcomeFooter = () => {
|
|
|
|
const t = useI18nContext();
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<div className="welcome-page__header">{t('welcome')}</div>
|
2022-11-16 21:16:43 +01:00
|
|
|
<Typography align={TEXT_ALIGN.CENTER} marginBottom={6}>
|
|
|
|
{t('metamaskDescription')}
|
|
|
|
</Typography>
|
|
|
|
|
|
|
|
<Typography align={TEXT_ALIGN.CENTER}>{t('happyToSeeYou')}</Typography>
|
2021-09-08 22:08:23 +02:00
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default WelcomeFooter;
|