mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-02 22:24:27 +01:00
23 lines
622 B
JavaScript
23 lines
622 B
JavaScript
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 (
|
|
<>
|
|
<div className="welcome-page__header">{t('welcome')}</div>
|
|
<Typography align={TEXT_ALIGN.CENTER} marginBottom={6}>
|
|
{t('metamaskDescription')}
|
|
</Typography>
|
|
|
|
<Typography align={TEXT_ALIGN.CENTER}>{t('happyToSeeYou')}</Typography>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default WelcomeFooter;
|