mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-20 14:58:24 +00:00
* 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.
50 lines
1.4 KiB
TypeScript
50 lines
1.4 KiB
TypeScript
import React from 'react';
|
|
import OnboardSlide from './OnboardSlide';
|
|
import translate from 'translations';
|
|
import onboardIconOne from 'assets/images/onboarding/slide-01.svg';
|
|
|
|
import './WelcomeSlide.scss';
|
|
|
|
const WelcomeSlide = () => {
|
|
const header = translate('ONBOARD_welcome_title');
|
|
const subheader = <small>{translate('ONBOARD_welcome_content__3')}</small>;
|
|
|
|
const content = (
|
|
<div>
|
|
<div className="WelcomeSlide-alert">
|
|
<div className="WelcomeSlide-alert-icon">
|
|
<i className="fa fa-exclamation-triangle" />
|
|
</div>
|
|
<span>
|
|
{translate('ONBOARD_welcome_content__1')}
|
|
{translate('ONBOARD_welcome_content__2')}
|
|
</span>
|
|
</div>
|
|
<div className="WelcomeSlide-alert">
|
|
<div className="WelcomeSlide-alert-icon">
|
|
<i className="fa fa-exclamation-triangle" />
|
|
</div>
|
|
<span>{translate('ONBOARD_welcome_content__8')}</span>
|
|
</div>
|
|
<h5>{translate('ONBOARD_welcome_content__4')}</h5>
|
|
<ul>
|
|
<li>{translate('ONBOARD_welcome_content__5')}</li>
|
|
<li>{translate('ONBOARD_welcome_content__6')}</li>
|
|
<li>{translate('ONBOARD_welcome_content__7')}</li>
|
|
</ul>
|
|
</div>
|
|
);
|
|
|
|
return (
|
|
<OnboardSlide
|
|
header={header}
|
|
subheader={subheader}
|
|
content={content}
|
|
image={onboardIconOne}
|
|
imageSide="right"
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default WelcomeSlide;
|