Skip to content

Commit 2983f2a

Browse files
committed
feat: add notes to project section and improve styling for better visibility
1 parent c6080ad commit 2983f2a

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

index.html

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,10 @@ <h3>Modular Design</h3>
138138
<div class="section-header">
139139
<h2>The Ecosystem</h2>
140140
<p>Powerful tools for your next big project</p>
141+
<p class="section-note">
142+
Showcasing a selection of our open-source projects — explore the full collection on our GitHub
143+
organization.
144+
</p>
141145
</div>
142146

143147
<div class="projects-grid">
@@ -1904,12 +1908,16 @@ <h3>k-number-utils</h3>
19041908
</div>
19051909

19061910
<div class="projects-cta">
1911+
<p class="cta-note">
1912+
This is just a subset of our work. Discover more libraries, tools, and experiments in our GitHub
1913+
organization.
1914+
</p>
19071915
<a
19081916
href="https://github.com/BackendStack21"
19091917
class="btn btn-primary"
19101918
target="_blank"
19111919
rel="noopener noreferrer"
1912-
>Explore the Organization in Github</a
1920+
>Explore All Projects on GitHub</a
19131921
>
19141922
</div>
19151923
</div>

styles.css

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -533,6 +533,14 @@ ul {
533533
font-size: 18px;
534534
}
535535

536+
.section-note {
537+
color: var(--text-muted);
538+
font-size: 14px;
539+
margin-top: 12px;
540+
font-style: italic;
541+
opacity: 0.8;
542+
}
543+
536544
.projects-grid {
537545
display: grid;
538546
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
@@ -637,8 +645,18 @@ ul {
637645

638646
.projects-cta {
639647
display: flex;
648+
flex-direction: column;
649+
align-items: center;
640650
justify-content: center;
641651
margin-top: 40px;
652+
gap: 16px;
653+
}
654+
655+
.cta-note {
656+
color: var(--text-muted);
657+
font-size: 15px;
658+
text-align: center;
659+
max-width: 500px;
642660
}
643661

644662
/* Code Preview */

0 commit comments

Comments
 (0)