Skip to content

Commit 987f5fe

Browse files
committed
Added button link to wiki
1 parent 733b4cc commit 987f5fe

1 file changed

Lines changed: 20 additions & 4 deletions

File tree

src/pages/index.astro

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,18 @@
297297
flex-wrap: wrap;
298298
}
299299

300+
.hero .cta-buttons {
301+
width: 100%;
302+
max-width: 640px;
303+
margin-left: auto;
304+
margin-right: auto;
305+
}
306+
307+
.hero .cta-buttons .btn {
308+
flex: 1 1 0;
309+
min-width: 0;
310+
}
311+
300312
.btn {
301313
display: inline-block;
302314
padding: var(--spacing-md) var(--spacing-xl);
@@ -328,14 +340,17 @@
328340
}
329341

330342
.btn-secondary {
331-
background: var(--secondary-color)t;
332-
color: var(--primary-color);
333-
border: 2px solid var(--primary-color);
343+
background: linear-gradient(135deg, var(--accent-color) 0%, #061018 100%);
344+
color: white;
345+
border: none;
346+
box-shadow: 0 0 20px rgba(18, 93, 174, 0.35);
334347
}
335348

336349
.btn-secondary:hover {
337-
background: var(--primary-color);
350+
background: linear-gradient(135deg, #2a7fd4 0%, #0c1e2e 100%);
338351
color: white;
352+
transform: translateY(-1px);
353+
box-shadow: 0 0 36px rgba(18, 93, 174, 0.5);
339354
}
340355

341356
.btn:focus {
@@ -1193,6 +1208,7 @@
11931208

11941209
<div class="cta-buttons">
11951210
<a href="#features" class="btn btn-primary">Explore Features</a>
1211+
<a href="https://chengxuan-li.github.io/EnergyAtlasWiki/" class="btn btn-secondary" target="_blank" rel="noopener noreferrer">Explore EnergyAtlasWiki</a>
11961212
<!-- <a href="#use-cases" class="btn btn-secondary">Explore Use Cases</a> -->
11971213
</div>
11981214
</div>

0 commit comments

Comments
 (0)