import logo from 'assets/images/logo-mycrypto.svg';
import {
ledgerReferralURL,
trezorReferralURL,
bitboxReferralURL,
donationAddressMap,
VERSION,
knowledgeBaseURL
} from 'config';
import React from 'react';
import translate from 'translations';
import './index.scss';
import PreFooter from './PreFooter';
import Disclaimer from './Disclaimer';
import { NewTabLink } from 'components/ui';
import OnboardModal from 'containers/OnboardModal';
const AffiliateTag = ({ link, text }: Link) => {
return (
{text}
);
};
const SocialMediaLink = ({ link, text }: Link) => {
return (
);
};
const SOCIAL_MEDIA: Link[] = [
{
link: 'https://www.reddit.com/r/mycrypto/',
text: 'reddit'
},
{
link: 'https://twitter.com/mycrypto',
text: 'twitter'
},
{
link: 'https://www.facebook.com/MyCrypto/',
text: 'facebook'
},
{
link: 'https://medium.com/@mycrypto',
text: 'medium'
},
{
link: 'https://www.linkedin.com/company/mycrypto',
text: 'linkedin'
},
{
link: 'https://github.com/MyCryptoHQ',
text: 'github'
}
];
const PRODUCT_INFO: Link[] = [
{
link: knowledgeBaseURL,
text: 'Knowledge Base'
},
{
link: 'https://www.mycrypto.com/helpers.html',
text: 'Helpers & ENS Debugging'
},
{
link: 'https://github.com/MyCryptoHQ/MyCrypto',
text: 'Github: Current Site'
},
{
link: 'https://github.com/MyCryptoHQ',
text: 'Github: MyCrypto Org'
},
{
link: 'https://github.com/MyCryptoHQ/MyCrypto/releases/latest',
text: 'Github: Latest Release'
},
{
link:
'https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn',
text: 'Anti - Phishing Extension'
}
];
interface Link {
link: string;
text: string;
}
interface Props {
latestBlock: string;
}
export default class Footer extends React.PureComponent {
public render() {
return (
);
}
}