Skip to content

Commit ce72674

Browse files
adebayooriyomiAdebayo Oriyomi
andauthored
Update Menu: Add jade logo and green logo (Blockstream#414)
Remove assets-minimal-json file Co-authored-by: Adebayo Oriyomi <[email protected]>
1 parent 00097a0 commit ce72674

File tree

14 files changed

+763
-29
lines changed

14 files changed

+763
-29
lines changed

client/src/views/nav-toggle.js

Lines changed: 22 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,28 @@ export default (t, theme, page) =>
2323
<div className="section1">
2424
<h4 className="menu-title">Wallets</h4>
2525
<div className="wallets-link">
26-
<p>Blockstream Green</p>
27-
<div>
28-
<a href="https://apps.apple.com/us/app/green-bitcoin-wallet/id1402243590" target="_blank"><img src={`${staticRoot}img/icons/apple.png`} /><span>App Store</span></a>
29-
<a href="https://play.google.com/store/apps/details?id=com.greenaddress.greenbits_android_wallet" target="_blank"><img src={`${staticRoot}img/icons/google-play.png`} /><span>Google Play</span></a>
30-
<a href="https://github.com/Blockstream/green_qt/releases/download/release_0.1.5/BlockstreamGreen-x86_64.AppImage"><img src={`${staticRoot}img/icons/linux.png`} /><span>Linux</span></a>
26+
<div className="wallets-logo">
27+
<a href="https://store.blockstream.com/product/blockstream-jade/?utm_source=Blockstream_Explorer&utm_medium=referral&utm_campaign=Blockstream_Explorer_Banner" className="darkmode" target="_blank"><img src={`${staticRoot}img/icons/jade_logo.svg`} alt="jade logo"/></a>
28+
<a href="https://blockstream.com/green/" className="darkmode" target="_blank"><img className="green-logo" src={`${staticRoot}img/icons/green_logo.svg`} alt="green logo"/></a>
29+
<a href="https://store.blockstream.com/product/blockstream-jade/?utm_source=Blockstream_Explorer&utm_medium=referral&utm_campaign=Blockstream_Explorer_Banner" className="lightmode" target="_blank"><img src={`${staticRoot}img/icons/jade_logo_light.svg`} alt="jade logo"/></a>
30+
<a href="https://blockstream.com/green/" className="lightmode" target="_blank"><img className="green-logo" src={`${staticRoot}img/icons/green_logo_light.svg`} alt="green logo"/></a>
31+
</div>
32+
<div className="store-icons">
33+
<a href="https://apps.apple.com/us/app/green-bitcoin-wallet/id1402243590" target="_blank">
34+
<img className="darkmode" src={`${staticRoot}img/icons/apple.png`} />
35+
<img className="lightmode" src={`${staticRoot}img/icons/apple_dark.png`} />
36+
<span>App Store</span>
37+
</a>
38+
<a href="https://play.google.com/store/apps/details?id=com.greenaddress.greenbits_android_wallet" target="_blank">
39+
<img className="darkmode" src={`${staticRoot}img/icons/google-play.png`} />
40+
<img className="lightmode" src={`${staticRoot}img/icons/google-play_dark.png`} />
41+
<span>Google Play</span>
42+
</a>
43+
<a href="https://github.com/Blockstream/green_qt/releases/download/release_0.1.5/BlockstreamGreen-x86_64.AppImage">
44+
<img className="darkmode" src={`${staticRoot}img/icons/linux.png`} />
45+
<img className="lightmode" src={`${staticRoot}img/icons/linux_dark.png`} />
46+
<span>Linux</span>
47+
</a>
3148
<a href="https://blockstream.com/green/" target="_blank">+4 more</a>
3249
</div>
3350
</div>
@@ -55,7 +72,6 @@ export default (t, theme, page) =>
5572
<li><a href="https://blockstream.com/liquid/" target="_blank">Liquid Network</a></li>
5673
<li><a href="https://blockstream.com/mining/" target="_blank">Blockstream Mining</a></li>
5774
<li><a href="https://blockstream.com/amp/" target="_blank">Blockstream AMP</a></li>
58-
<li><a href="https://blockstream.com/jade/" target="_blank">Blockstream Jade</a></li>
5975
<li><a href="https://blockstream.com/satellite/" target="_blank">Blockstream Satellite</a></li>
6076
<li><a href="https://blockstream.com/cryptofeed/" target="_blank">Crypto Data Feed</a></li>
6177
<li><a href="https://blockstream.com/lightning/" target="_blank">Core Lightning</a></li>

flavors/blockstream/extras.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
.navbar-brand::before {
2-
background: url(img/icons/blockstream-logo-text.svg);
2+
background: url(img/icons/explorer_logo.svg);
33
background-size: cover;
44
width: 240px;
55
margin: 0;
66
background-repeat: no-repeat;
77
}
88

9+
.theme-light .navbar-brand::before {
10+
background: url(img/icons/explorer_dark_logo.svg);
11+
}
12+
913
.footer-logo::before {
1014
width: 220px;
1115
height: 93px;
Lines changed: 119 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)