Skip to content

Commit 6d1b051

Browse files
authored
Merge pull request #3 from justinbarias/feature/improveProductStatement
Improve product statement
2 parents dca7547 + 929e503 commit 6d1b051

File tree

2 files changed

+53
-7
lines changed

2 files changed

+53
-7
lines changed

src/layouts/BaseLayout.astro

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -354,6 +354,41 @@ const { title = "HoloDeck – Build, Test & Deploy AI Agents", description = ""
354354
max-height: 260px;
355355
}
356356

357+
.mini-grid {
358+
display: grid;
359+
grid-template-columns: repeat(2, minmax(0, 1fr));
360+
gap: 12px;
361+
margin-top: 12px;
362+
}
363+
364+
@media (max-width: 640px) {
365+
.mini-grid {
366+
grid-template-columns: minmax(0, 1fr);
367+
}
368+
}
369+
370+
.mini-card {
371+
background: rgba(12, 20, 18, 0.8);
372+
border: 1px solid var(--border);
373+
border-radius: var(--radius-md);
374+
padding: 12px;
375+
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
376+
}
377+
378+
.mini-card h3 {
379+
margin: 0 0 6px;
380+
font-size: 14px;
381+
color: var(--fg);
382+
letter-spacing: -0.01em;
383+
}
384+
385+
.mini-card p {
386+
margin: 0;
387+
font-size: 13px;
388+
color: var(--muted);
389+
line-height: 1.5;
390+
}
391+
357392
/* Steps */
358393

359394
.steps-grid {

src/pages/index.astro

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,24 @@ holodeck deploy agent.yaml --port 8000
8484
</p>
8585
<div class="two-col">
8686
<div>
87-
<ul style="padding-left: 18px; margin-top: 14px; font-size: 13px; color: var(--muted); line-height: 1.6;">
88-
<li><strong>No-Code Agents</strong> — models, prompts, tools, memory, and vector stores defined in YAML.</li>
89-
<li><strong>Hypothesis-Driven Testing</strong> — turn real user journeys into structured test cases.</li>
90-
<li><strong>Integrated Evaluations</strong> — groundedness, relevance, F1, BLEU, ROUGE, and more.</li>
91-
<li><strong>One-Command Deployment</strong> — <code>holodeck deploy</code> turns configs into APIs.</li>
92-
<li><strong>Self-Hosted &amp; Open Source</strong> — no vendor lock-in, ship on your own infra.</li>
93-
</ul>
87+
<div class="mini-grid">
88+
<div class="mini-card">
89+
<h3>No-Code Agents</h3>
90+
<p>Models, prompts, tools, memory, and vector stores defined in YAML.</p>
91+
</div>
92+
<div class="mini-card">
93+
<h3>Hypothesis Testing</h3>
94+
<p>Turn real user journeys into structured test cases and evals.</p>
95+
</div>
96+
<div class="mini-card">
97+
<h3>Integrated Metrics</h3>
98+
<p>Groundedness, relevance, F1, BLEU, ROUGE, and more in one CLI.</p>
99+
</div>
100+
<div class="mini-card">
101+
<h3>Deploy Anywhere</h3>
102+
<p><code>holodeck deploy</code> converts configs to FastAPI services.</p>
103+
</div>
104+
</div>
94105
</div>
95106
<div class="code-card">
96107
name: "customer-support-agent"

0 commit comments

Comments
 (0)