Skip to content

Commit bd28ca3

Browse files
committed
card and sidebar
.
1 parent 800c361 commit bd28ca3

File tree

3 files changed

+12
-15
lines changed

3 files changed

+12
-15
lines changed

docs/docs.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
"group": "Quickstart",
2222
"pages": [
2323
"quickstart/applications",
24-
"quickstart/clients",
2524
{
2625
"group": "Build integrations",
2726
"pages": [
2827
"quickstart/introduction",
2928
"quickstart/server",
3029
"quickstart/middleware"
3130
]
32-
}
31+
},
32+
"quickstart/clients"
3333
]
3434
}
3535
]

docs/introduction.mdx

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -156,14 +156,12 @@ Built for simplicity and flexibility, it standardizes how agent state, UI intent
156156
</div>
157157
</div>
158158

159-
<div style={{border: '1px solid #e5e7eb', borderRadius: '8px', overflow: 'hidden', transition: 'all 0.3s ease', cursor: 'pointer'}} onMouseEnter={(e) => { e.currentTarget.style.borderColor = '#3b82f6'; e.currentTarget.style.boxShadow = '0 4px 12px rgba(59, 130, 246, 0.15)'; e.currentTarget.querySelector('.content').style.maxHeight = '200px'; e.currentTarget.querySelector('.content').style.opacity = '1'; }} onMouseLeave={(e) => { e.currentTarget.style.borderColor = '#e5e7eb'; e.currentTarget.style.boxShadow = 'none'; e.currentTarget.querySelector('.content').style.maxHeight = '0px'; e.currentTarget.querySelector('.content').style.opacity = '0'; }}>
159+
<div style={{border: '1px solid #e5e7eb', borderRadius: '8px', overflow: 'hidden', transition: 'all 0.3s ease', cursor: 'pointer'}} onClick={() => window.location.href = '/concepts/events'} onMouseEnter={(e) => { e.currentTarget.style.borderColor = '#3b82f6'; e.currentTarget.style.boxShadow = '0 4px 12px rgba(59, 130, 246, 0.15)'; }} onMouseLeave={(e) => { e.currentTarget.style.borderColor = '#e5e7eb'; e.currentTarget.style.boxShadow = 'none'; }}>
160160
<div style={{padding: '1rem 1.5rem', backgroundColor: '#f9fafb', fontWeight: '600', color: '#374151'}}>
161-
Custom events
161+
Events
162162
</div>
163-
<div className="content" style={{maxHeight: '0px', opacity: '0', overflow: 'hidden', transition: 'all 0.3s ease', padding: '0 1.5rem', backgroundColor: '#ffffff'}}>
164-
<div style={{padding: '1rem 0', color: '#6b7280', lineHeight: '1.6'}}>
165-
Open-ended data exchange for needs not covered by the protocol.
166-
</div>
163+
<div style={{padding: '1rem 1.5rem', color: '#6b7280', lineHeight: '1.6'}}>
164+
Learn about AG-UI's event-driven protocol and all available event types.
167165
</div>
168166
</div>
169167
</div>
@@ -269,7 +267,6 @@ Choose the path that fits your needs:
269267
Build agentic applications powered by AG-UI compatible agents.
270268
</Card>
271269

272-
273270
<Card
274271
title="Build new AG-UI integrations"
275272
icon="plug"
@@ -302,19 +299,19 @@ Dive deeper into AG-UI's core concepts and capabilities:
302299
icon="sitemap"
303300
iconType="light"
304301
color="#3B82F6"
305-
href="/docs/concepts/architecture"
302+
href="/concepts/architecture"
306303
>
307304
Understand how AG-UI connects agents, protocols, and front-ends
308305
</Card>
309306

310307
<Card
311-
title="Transports"
312-
icon="network-wired"
308+
title="Events"
309+
icon="bolt"
313310
iconType="light"
314311
color="#3B82F6"
315-
href="/docs/concepts/transports"
312+
href="/concepts/events"
316313
>
317-
Learn about AG-UI's communication mechanism
314+
Learn about AG-UI's event-driven protocol
318315
</Card>
319316
</CardGroup>
320317

docs/quickstart/clients.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Build clients"
33
description:
4-
"Build a conversational CLI agent from scratch using AG-UI and Mastra"
4+
"Showcase: build a conversational CLI agent from scratch using AG-UI and Mastra"
55
---
66

77
# Introduction

0 commit comments

Comments
 (0)