mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-12 03:54:13 +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.
33 lines
1.1 KiB
TypeScript
33 lines
1.1 KiB
TypeScript
import React from 'react';
|
|
import translate from 'translations';
|
|
import OnboardSlide from './OnboardSlide';
|
|
import onboardIconFive from 'assets/images/onboarding/slide-05.svg';
|
|
|
|
const WhySlide = () => {
|
|
const header = translate('ONBOARD_why_title');
|
|
|
|
const content = (
|
|
<div>
|
|
<h5>{translate('ONBOARD_why_content__1')}</h5>
|
|
<ul>
|
|
<li className="text-danger">{translate('ONBOARD_why_content__2')}</li>
|
|
<li className="text-danger">{translate('ONBOARD_why_content__3')}</li>
|
|
<li className="text-danger">{translate('ONBOARD_why_content__4')}</li>
|
|
<li className="text-danger">{translate('ONBOARD_why_content__5')}</li>
|
|
<li className="text-danger">{translate('ONBOARD_why_content__6')}</li>
|
|
</ul>
|
|
<h5>{translate('ONBOARD_why_content__7')}</h5>
|
|
<ul>
|
|
<li>{translate('ONBOARD_why_content__8')}</li>
|
|
<li>{translate('ONBOARD_why_content__9')}</li>
|
|
<li>{translate('ONBOARD_why_content__10')}</li>
|
|
</ul>
|
|
</div>
|
|
);
|
|
return (
|
|
<OnboardSlide header={header} content={content} image={onboardIconFive} imageSide="left" />
|
|
);
|
|
};
|
|
|
|
export default WhySlide;
|