mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-23 17:38:57 +00:00
e7633c6d2f
* Replace all mentions of MyEtherWallet in translations with MyCrypto * Replace all translation mentions of kvhnuke/etherwallet repo with MyCryptoHQ/MyCrypto repo. * Replace all instances of MEW with MyCrypto in translations. * Replace all instances of myetherwallet.com with mycrypto.com * First pass of myetherwallet -> mycrypto in codebase. * Replace most MEWs and mews with MyCrypto or MyC or myc * Update all assets, clean out unused old assets. * Adjust v3 url * Convert all links to help articles to a help link component to make future changes easier. * Rework onboarding images * Adjust logo colors due to CMY issue. * Update donation address, remove mentions of mewtopia.eth * Update license * Update sosh meed and referral links. * Fix more translations strings. * Tscheck fix. * Update shapeshift api key.
68 lines
2.0 KiB
TypeScript
68 lines
2.0 KiB
TypeScript
import React from 'react';
|
|
import translate from 'translations';
|
|
import { Link } from 'react-router-dom';
|
|
import { HelpLink } from 'components/ui';
|
|
import { HELP_ARTICLE } from 'config';
|
|
import OnboardSlide from './OnboardSlide';
|
|
import onboardIconTen from 'assets/images/onboarding/slide-10.svg';
|
|
|
|
const FinalSlide = ({ closeModal }) => {
|
|
const header = translate('ONBOARD_final_title');
|
|
const subheader = translate('ONBOARD_final_subtitle');
|
|
|
|
const content = (
|
|
<ul>
|
|
<li>
|
|
<HelpLink article={HELP_ARTICLE.HARDWARE_WALLET_RECOMMENDATIONS} className="strong">
|
|
{translate('ONBOARD_final_content__2')}
|
|
</HelpLink>
|
|
</li>
|
|
<li>
|
|
<HelpLink article={HELP_ARTICLE.MIGRATE_TO_METAMASK} className="strong">
|
|
{translate('ONBOARD_final_content__3')}
|
|
</HelpLink>
|
|
</li>
|
|
<li>
|
|
<HelpLink article={HELP_ARTICLE.RUNNING_LOCALLY} className="strong">
|
|
{translate('ONBOARD_final_content__4')}
|
|
</HelpLink>
|
|
</li>
|
|
<li>
|
|
<HelpLink article={HELP_ARTICLE.MIGRATE_TO_LEDGER} className="strong">
|
|
{translate('ONBOARD_final_content__5')}
|
|
</HelpLink>
|
|
</li>
|
|
<li>
|
|
<HelpLink article={HELP_ARTICLE.SENDING_TO_TREZOR} className="strong">
|
|
{translate('ONBOARD_final_content__6')}
|
|
</HelpLink>
|
|
</li>
|
|
<li>
|
|
<HelpLink article={HELP_ARTICLE.MIGRATE_TO_METAMASK} className="strong">
|
|
{translate('ONBOARD_final_content__7')}
|
|
</HelpLink>
|
|
</li>
|
|
<li>
|
|
<HelpLink article={HELP_ARTICLE.HOME} className="strong">
|
|
{translate('ONBOARD_final_content__8')}
|
|
</HelpLink>
|
|
</li>
|
|
<li>
|
|
<Link onClick={closeModal} to="/account" className="strong">
|
|
<span> {translate('ONBOARD_final_content__9')}</span>
|
|
</Link>
|
|
</li>
|
|
</ul>
|
|
);
|
|
return (
|
|
<OnboardSlide
|
|
header={header}
|
|
subheader={subheader}
|
|
content={content}
|
|
image={onboardIconTen}
|
|
imageSide="left"
|
|
/>
|
|
);
|
|
};
|
|
export default FinalSlide;
|