Skip to content

Commit 64635ca

Browse files
committed
Update CSS and HTML structure for panels and product grid
Adjusted styles.css to add margin-top and padding-top to .panel .inline-link and updated .panel styles to use flex layout for better internal structure. Updated index.html to change the product grid from two columns to three columns and added the 'Simple License Server' product card with its details.
1 parent 4a2dbaf commit 64635ca

2 files changed

Lines changed: 23 additions & 2 deletions

File tree

index.html

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<title>ByteBard | Engineering Velocity through DevEx &amp; EDA</title>
77
<meta name="title" content="ByteBard | Engineering Velocity through DevEx &amp; EDA">
88
<meta name="description" content="ByteBard builds focused engineering products and helps teams scale with high-performance DevEx, API strategy, and resilient event-driven architectures.">
9-
<meta name="keywords" content="ByteBard, DevEx, engineering velocity, API strategy, API governance, event-driven architecture, EDA, ShieldedStack, Critiq, GUSTO, AsyncAPI.NET, software consultancy">
9+
<meta name="keywords" content="ByteBard, DevEx, engineering velocity, API strategy, API governance, event-driven architecture, EDA, ShieldedStack, Critiq, GUSTO, AsyncAPI.NET, Simple License Server, software consultancy">
1010
<meta name="author" content="ByteBard">
1111
<meta name="theme-color" content="#0f1221">
1212
<meta property="og:type" content="website">
@@ -120,7 +120,7 @@ <h2>Under the ByteBard name</h2>
120120
<p class="section-intro">
121121
We invest in products that solve recurring engineering problems in real teams.
122122
</p>
123-
<div class="card-grid two-col">
123+
<div class="card-grid three-col">
124124
<article class="panel reveal">
125125
<h3>ShieldedStack</h3>
126126
<p>
@@ -147,6 +147,19 @@ <h3>Critiq</h3>
147147
</ul>
148148
<a class="inline-link" href="https://getcritiq.dev" target="_blank" rel="noopener noreferrer">Visit Critiq</a>
149149
</article>
150+
<article class="panel reveal">
151+
<h3>Simple License Server</h3>
152+
<p>
153+
A self-hosted license server for SaaS and desktop developers who need a reliable
154+
license key API.
155+
</p>
156+
<ul>
157+
<li>Run it in Docker and store data in Postgres</li>
158+
<li>Source-available and deployable in your own infrastructure</li>
159+
<li>Built for teams that need dependable license key workflows</li>
160+
</ul>
161+
<a class="inline-link" href="https://simplelicenseserver.com" target="_blank" rel="noopener noreferrer">Visit Simple License Server</a>
162+
</article>
150163
</div>
151164
</div>
152165
</section>

styles.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,9 @@ ul {
263263
border-radius: var(--radius-md);
264264
padding: 1.2rem;
265265
box-shadow: var(--shadow-soft);
266+
display: flex;
267+
flex-direction: column;
268+
height: 100%;
266269
}
267270

268271
.panel h3 {
@@ -287,6 +290,11 @@ ul {
287290
text-decoration: none;
288291
}
289292

293+
.panel .inline-link {
294+
margin-top: auto;
295+
padding-top: 1rem;
296+
}
297+
290298
.inline-link:hover {
291299
text-decoration: underline;
292300
}

0 commit comments

Comments
 (0)