Daniel Ternyak c0cd228336 Add Pre-footer (#199)
* create PreFooter components and styles

* add PreFooter to main Footer Component and adjust Footer styles
2017-09-15 14:38:11 -07:00

20 lines
548 B
JavaScript

import React from 'react';
import './PreFooter.scss';
const PreFooter = () => {
return (
<section className="pre-footer">
<div className="container">
<p>
MyEtherWallet.com does not hold your keys for you. We cannot access
accounts, recover keys, reset passwords, nor reverse transactions.
Protect your keys &amp; always check that you are on correct URL.
<a href="#"> You are responsible for your security.</a>
</p>
</div>
</section>
);
};
export default PreFooter;