William O'Beirne e7633c6d2f MyEtherWallet -> MyCrypto (#977)
* 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.
2018-02-06 22:28:28 -06:00

38 lines
1.0 KiB
TypeScript

import React from 'react';
import translate from 'translations';
import OnboardSlide from './OnboardSlide';
import onboardIconNine from 'assets/images/onboarding/slide-09.svg';
interface Props {
site?: string;
}
const SecureSlideThree: React.SFC<Props> = ({ site }) => {
const header = translate('ONBOARD_secure_3_title');
const subheader = translate('ONBOARD_secure_3_content__1');
const content = (
<div>
<ul>
<li>{translate('ONBOARD_secure_3_content__2')}</li>
<li>{translate('ONBOARD_secure_3_content__3')}</li>
<li>{translate('ONBOARD_secure_3_content__4')}</li>
<li>{translate('ONBOARD_secure_3_content__5')}</li>
{site === 'cx' && <li>{translate('CX_Warning_1')}</li>}
</ul>
<h5 className="text-center">{translate('ONBOARD_secure_3_content__6')} </h5>
</div>
);
return (
<OnboardSlide
header={header}
subheader={subheader}
content={content}
image={onboardIconNine}
imageSide="right"
/>
);
};
export default SecureSlideThree;