Make href of logo relative path instead of hardcoded to myetherwallet.com
This commit is contained in:
parent
736ad23f1c
commit
29b3f9e44b
|
@ -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>
|
||||||
href="https://github.com/kvhnuke"
|
<a aria-label="kvhnuke's github"
|
||||||
target="_blank">kvhnuke</a> & <a
|
href="https://github.com/kvhnuke"
|
||||||
aria-label="tayvano's github" href="https://github.com/tayvano" target="_blank">tayvano</a>.
|
target="_blank">kvhnuke</a> &
|
||||||
|
<a aria-label="tayvano's github"
|
||||||
|
href="https://github.com/tayvano"
|
||||||
|
target="_blank">tayvano</a>.
|
||||||
</p>
|
</p>
|
||||||
<br/>
|
<br/>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue