Skip to content

Commit f6c6da0

Browse files
sebbycorpclaude
authored andcommitted
Add Custom Evaluators feature card to landing page
Center the last row when card count isn't divisible by 3. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 0117ddc commit f6c6da0

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

layouts/index.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,11 @@ <h3>LLM-as-Judge</h3>
8282
<h3>CI/CD Integration</h3>
8383
<p>Run evaluations in your pipeline with the CLI. Gate deployments on agent behavior quality scores.</p>
8484
</div>
85+
<div class="feature-card">
86+
<div class="feature-icon">&#x1f9e9;</div>
87+
<h3>Custom Evaluators</h3>
88+
<p>Write your own scoring logic in Python, JavaScript, or any language. Share evaluators through the community registry.</p>
89+
</div>
8590
</div>
8691
</section>
8792

static/css/style.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,11 @@ section {
360360
display: grid;
361361
grid-template-columns: repeat(3, 1fr);
362362
gap: 1.5rem;
363+
justify-items: center;
364+
}
365+
366+
.features-grid .feature-card:last-child:nth-child(3n+1) {
367+
grid-column: 2;
363368
}
364369

365370
@media (max-width: 768px) {

0 commit comments

Comments
 (0)