Skip to content

Commit fbf1bdd

Browse files
Serhii Prykhozhyiphilippem
authored andcommitted
update hero, add new logo, update styling, update footer
1 parent 7b943fa commit fbf1bdd

File tree

9 files changed

+125
-250
lines changed

9 files changed

+125
-250
lines changed

client/src/views/lander.js

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,17 @@ const LandingPage = ({ t, ...S }) => layout(
99
<div className="blur-orange"></div>
1010
<div className="blur-green"></div>
1111
<div className="hero-section">
12-
<div className="container text-center">
13-
<h1 className="font-h1">Powering Bitcoin and Liquid Applications with Real-Time Blockchain Data</h1>
14-
<p className="font-p1 text-gray">Built to simplify development and enhance performance for existing Bitcoin and Liquid applications, the Blockstream Explorer API offers faster address lookups, robust DoS protection, and seamless integration.</p>
15-
<a href="https://blockstream.com/explorerbeta" target="_blank" className="g-btn primary-btn">JOIN THE OPEN BETA</a>
12+
<div className="container">
13+
<div className="hero-wrapper">
14+
<div className="hero-text">
15+
<h1 className="font-h1">Powering Bitcoin and Liquid Applications with Real-Time Blockchain Data</h1>
16+
<p className="font-p1 text-gray">Built to simplify development and enhance performance for existing Bitcoin and Liquid applications, the Blockstream Explorer API offers faster address lookups, robust DoS protection, and seamless integration.</p>
17+
<a href="https://blockstream.com/explorerbeta" target="_blank" className="g-btn primary-btn">JOIN THE OPEN BETA</a>
18+
</div>
19+
<div className="hero-image">
20+
<img src={`${staticRoot}img/hero-explorer-api.png`} alt="Hero Image" />
21+
</div>
22+
</div>
1623
</div>
1724
</div>
1825

@@ -164,7 +171,7 @@ const LandingPage = ({ t, ...S }) => layout(
164171
<span className="currency">$</span>
165172
<span className="amount">4,000</span>
166173
</div>
167-
<div className="pricing-table-description">Above 60M Requests Unlimited Usage</div>
174+
<div className="pricing-table-description" style={{lineHeight: `15px`}}>Above 60M Requests Unlimited Usage</div>
168175
</div>
169176
</div>
170177
<p className="font-p2 text-gray"><a href="mailto:[email protected]">Contact Support</a> now if you are looking for more tailored plans designed for high-volume and enterprise-grade applications.</p>

flavors/blockstream/config.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export SITE_DESC='Blockstream Explorer is an open source block explorer providing detailed blockchain data across Bitcoin, Testnet, and Liquid. Supports Tor and tracking-free.'
2-
export SITE_FOOTER='© 2024 Blockstream Corporation Inc. All rights reserved.'
2+
export SITE_FOOTER='© 2025 Blockstream Corporation Inc. All rights reserved.'
33
export HEAD_HTML=\
44
'<meta property="og:image" content="https://blockstream.info/img/social-sharing.png">'\
55
'<meta name="twitter:image" content="https://blockstream.info/img/social-sharing.png">'\

flavors/blockstream/extras.css

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.navbar-brand::before {
22
background: url(img/icons/explorer_logo.svg);
3-
background-size: cover;
3+
background-size: contain;
44
width: 245px;
55
margin: 0;
66
background-repeat: no-repeat;
@@ -9,7 +9,7 @@
99
.theme-light .navbar-brand::before {
1010
background: url(img/icons/explorer_dark_logo.svg);
1111
background-repeat: no-repeat;
12-
background-size: cover;
12+
background-size: contain;
1313
width: 245px;
1414
margin: 0;
1515
}
@@ -45,10 +45,18 @@
4545
}
4646

4747
.theme-light .navbar-brand::before, .navbar-brand::before {
48-
background: url(img/icons/blockstream-logo.png);
48+
4949
background-size: 54px 54px;
5050
width: 54px;
5151
}
52+
53+
.theme-light .navbar-brand::before {
54+
background: url(img/icons/dark-logo-icon.svg);
55+
}
56+
57+
.navbar-brand::before {
58+
background: url(img/icons/light-logo-icon.svg);
59+
}
5260
}
5361

5462

Lines changed: 5 additions & 0 deletions
Loading

flavors/blockstream/www/img/icons/explorer_dark_logo.svg

Lines changed: 23 additions & 118 deletions
Loading

flavors/blockstream/www/img/icons/explorer_logo.svg

Lines changed: 23 additions & 118 deletions
Loading
Lines changed: 5 additions & 0 deletions
Loading

www/img/hero-explorer-api.png

477 KB
Loading

www/style.css

Lines changed: 45 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2958,7 +2958,7 @@ h3.table-title{
29582958
}
29592959

29602960
.hero-section {
2961-
margin-bottom: 65px;
2961+
margin-bottom: 100px;
29622962
position: relative;
29632963

29642964
}
@@ -2991,6 +2991,40 @@ h3.table-title{
29912991
}
29922992
}
29932993

2994+
.hero-wrapper {
2995+
display: flex;
2996+
margin-top: 90px;
2997+
}
2998+
2999+
@media screen and (max-width: 820px) {
3000+
.hero-wrapper {
3001+
flex-direction: column-reverse;
3002+
align-items: center;
3003+
}
3004+
}
3005+
3006+
.hero-text {
3007+
width: 50%;
3008+
display: flex;
3009+
flex-direction: column;
3010+
}
3011+
3012+
.hero-image {
3013+
width: 50%;
3014+
display: flex;
3015+
justify-content: center;
3016+
align-items: center;
3017+
}
3018+
3019+
@media screen and (max-width: 820px) {
3020+
.hero-text, .hero-image {width: 100%;}
3021+
}
3022+
3023+
.hero-image > img {
3024+
max-width: 390px;
3025+
width: 100%;
3026+
}
3027+
29943028
.hero-section h1 {
29953029
margin: 20px 0 32px;
29963030
}
@@ -3046,7 +3080,7 @@ h3.table-title{
30463080
flex: 0 0 auto;
30473081
}
30483082

3049-
@media screen and (min-width: 821px) {
3083+
@media screen and (min-width: 1141px) {
30503084
.logos-desktop {
30513085
display: block;
30523086
}
@@ -3061,7 +3095,7 @@ h3.table-title{
30613095
}
30623096
}
30633097

3064-
@media screen and (max-width: 820px) {
3098+
@media screen and (max-width: 1140px) {
30653099
.logos-desktop {
30663100
display: none;
30673101
}
@@ -3082,6 +3116,10 @@ h3.table-title{
30823116
margin: 0 auto;
30833117
}
30843118

3119+
.info-section {
3120+
margin-bottom: 100px;
3121+
}
3122+
30853123
.info-section h2 {
30863124
margin: 25px auto;
30873125
max-width: 740px;
@@ -3235,8 +3273,10 @@ h3.table-title{
32353273
font-size: 12px;
32363274
font-style: normal;
32373275
font-weight: 400;
3238-
line-height: 36px;
3239-
color: #B5BDC2;
3276+
line-height: 22px;
3277+
color: #fff;
3278+
font-family: "Inter", sans-serif;
3279+
letter-spacing: normal;
32403280
}
32413281

32423282
.pricing-card p {

0 commit comments

Comments
 (0)