Make href of logo relative path instead of hardcoded to myetherwallet.com

This commit is contained in:
Daniel Ternyak 2017-04-14 01:17:53 -05:00
parent 736ad23f1c
commit 29b3f9e44b
1 changed files with 12 additions and 9 deletions

View File

@ -17,17 +17,20 @@ export default class Footer extends Component {
<section className="row"> <section className="row">
<div className="col-sm-3 footer-1"> <div className="col-sm-3 footer-1">
<p aria-hidden="true"> <p aria-hidden="true">
<a href="https://www.myetherwallet.com/"> <a href="/">
{/* TODO - don't hardcode image path*/} {/* TODO - don't hardcode image path*/}
<img <img src={"https://www.myetherwallet.com/images/logo-myetherwallet.svg"}
src={"https://www.myetherwallet.com/images/logo-myetherwallet.svg"} height="55px" width="auto" alt="Ether Wallet"/>
height="55px" width="auto" alt="Ether Wallet"/></a> </a>
</p> </p>
<p><span>Open-Source, client-side tool for easily & securely interacting with the Ethereum network.</span> <p><span>Open-Source, client-side tool for easily & securely interacting with the Ethereum network.</span>
<span >Created by</span> <a aria-label="kvhnuke's github" <span>Created by</span>
<a aria-label="kvhnuke's github"
href="https://github.com/kvhnuke" href="https://github.com/kvhnuke"
target="_blank">kvhnuke</a> & <a target="_blank">kvhnuke</a> &
aria-label="tayvano's github" href="https://github.com/tayvano" target="_blank">tayvano</a>. <a aria-label="tayvano's github"
href="https://github.com/tayvano"
target="_blank">tayvano</a>.
</p> </p>
<br/> <br/>
</div> </div>