Skip to content

Commit 5e581d0

Browse files
committed
docs: center WebSocket APIs card and move Real-World Usage to bottom
- CSS rule to center the last feature card when it's alone in its row - Move Real-World Usage section below Claude Code Integration
1 parent 0f41f6d commit 5e581d0

1 file changed

Lines changed: 26 additions & 22 deletions

File tree

docs/index.html

Lines changed: 26 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -470,6 +470,10 @@
470470
margin-top: 3.5rem;
471471
}
472472

473+
.features-grid > .feature-card:last-child:nth-child(3n + 1) {
474+
grid-column: 2;
475+
}
476+
473477
.feature-card {
474478
padding: 2rem;
475479
background: var(--bg-card);
@@ -1352,28 +1356,6 @@ <h2 class="section-title">llmock vs MSW</h2>
13521356
</div>
13531357
</section>
13541358

1355-
<!-- ═══ Real-World Usage ═════════════════════════════════════════ -->
1356-
<section class="reveal">
1357-
<div class="container">
1358-
<h2>Real-World Usage</h2>
1359-
<p>
1360-
<a href="https://github.com/CopilotKit/CopilotKit" target="_blank">CopilotKit</a> uses
1361-
llmock across its test suite to verify AI agent behavior across multiple LLM providers
1362-
without hitting real APIs. The tests cover streaming text, tool calls, and multi-turn
1363-
conversations across both v1 and v2 runtimes.
1364-
</p>
1365-
<p>
1366-
See the
1367-
<a
1368-
href="https://github.com/CopilotKit/CopilotKit/search?q=llmock&amp;type=code"
1369-
target="_blank"
1370-
>CopilotKit test suite</a
1371-
>
1372-
for real-world examples of llmock in action.
1373-
</p>
1374-
</div>
1375-
</section>
1376-
13771359
<!-- ═══ Claude Code Integration ═══════════════════════════════════ -->
13781360
<section id="claude-code" class="reveal">
13791361
<div class="container">
@@ -1435,6 +1417,28 @@ <h3>Copy to Project</h3>
14351417
</div>
14361418
</section>
14371419

1420+
<!-- ═══ Real-World Usage ═════════════════════════════════════════ -->
1421+
<section class="reveal">
1422+
<div class="container">
1423+
<h2>Real-World Usage</h2>
1424+
<p>
1425+
<a href="https://github.com/CopilotKit/CopilotKit" target="_blank">CopilotKit</a> uses
1426+
llmock across its test suite to verify AI agent behavior across multiple LLM providers
1427+
without hitting real APIs. The tests cover streaming text, tool calls, and multi-turn
1428+
conversations across both v1 and v2 runtimes.
1429+
</p>
1430+
<p>
1431+
See the
1432+
<a
1433+
href="https://github.com/CopilotKit/CopilotKit/search?q=llmock&amp;type=code"
1434+
target="_blank"
1435+
>CopilotKit test suite</a
1436+
>
1437+
for real-world examples of llmock in action.
1438+
</p>
1439+
</div>
1440+
</section>
1441+
14381442
<!-- ═══ Footer ═══════════════════════════════════════════════════ -->
14391443
<footer>
14401444
<div class="container">

0 commit comments

Comments
 (0)