Skip to content

Commit 600305f

Browse files
authored
VAP10-39: Fix UI bugs
1 parent 7ce635f commit 600305f

File tree

4 files changed

+25
-107
lines changed

4 files changed

+25
-107
lines changed

fern/calls/call-dynamic-transfers.mdx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -521,17 +521,11 @@ sequenceDiagram
521521

522522
<CardGroup cols={2}>
523523
<Card title="Customer Support Escalation" icon="headset" href="/assistants/examples/support-escalation">
524-
<div className='absolute top-4 right-4'>
525-
<Icon icon="arrow-up-right-from-square" />
526-
</div>
527524
**Assistant-based routing**
528525

529526
Route customers to appropriate support tiers based on conversation analysis and customer data
530527
</Card>
531528
<Card title="Property Management Routing" icon="building" href="/squads/examples/property-management">
532-
<div className='absolute top-4 right-4'>
533-
<Icon icon="arrow-up-right-from-square" />
534-
</div>
535529
**Squad-based routing**
536530

537531
Direct tenant calls to the right department with automated verification

fern/debugging.mdx

Lines changed: 25 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -209,38 +209,31 @@ For any tool in your `Tools` section:
209209

210210
When you're stuck:
211211

212-
<Card
213-
title="Community Support"
214-
icon="user-group"
215-
href="https://discord.com/invite/pUFNcf2WmH"
216-
>
217-
<div className='absolute top-4 right-4'>
218-
<Icon icon="arrow-up-right-from-square" />
219-
</div>
220-
Join the Vapi Discord for real-time help from the community and team
221-
</Card>
222-
223-
<Card
224-
title="API Reference"
225-
icon="book"
226-
href="/api-reference"
227-
>
228-
<div className='absolute top-4 right-4'>
229-
<Icon icon="arrow-up-right-from-square" />
230-
</div>
231-
Check the API reference for detailed configuration options
232-
</Card>
233-
234-
<Card
235-
title="Status Page"
236-
icon="fa-light fa-heartbeat"
237-
href="https://status.vapi.ai/"
238-
>
239-
<div className='absolute top-4 right-4'>
240-
<Icon icon="arrow-up-right-from-square" />
241-
</div>
242-
Check real-time status of Vapi services and AI providers
243-
</Card>
212+
<CardGroup cols={3}>
213+
<Card
214+
title="Community Support"
215+
icon="user-group"
216+
href="https://discord.com/invite/pUFNcf2WmH"
217+
>
218+
Join the Vapi Discord for real-time help from the community and team
219+
</Card>
220+
221+
<Card
222+
title="API Reference"
223+
icon="book"
224+
href="/api-reference"
225+
>
226+
Check the API reference for detailed configuration options
227+
</Card>
228+
229+
<Card
230+
title="Status Page"
231+
icon="fa-light fa-heartbeat"
232+
href="https://status.vapi.ai/"
233+
>
234+
Check real-time status of Vapi services and AI providers
235+
</Card>
236+
</CardGroup>
244237

245238
**Before asking for help:**
246239
- Include call ID and timestamp from `Call Logs` in your [dashboard](https://dashboard.vapi.ai/)

fern/guides.mdx

Lines changed: 0 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -10,97 +10,61 @@ slug: guides
1010

1111
<CardGroup cols={2}>
1212
<Card title="Appointment Scheduling" icon="calendar-check" href="/assistants/examples/appointment-scheduling">
13-
<div className='absolute top-4 right-4'>
14-
<Icon icon="arrow-up-right-from-square" />
15-
</div>
1613
<div class="vapi-badge vapi-badge-assistant">Built with Assistants</div>
1714
<br />
1815
Build an appointment scheduling assistant that can schedule appointments for a barbershop
1916
</Card>
2017
<Card title="Medical Triage & Scheduling" icon="stethoscope" href="/squads/examples/clinic-triage-scheduling">
21-
<div className='absolute top-4 right-4'>
22-
<Icon icon="arrow-up-right-from-square" />
23-
</div>
2418
<div class="vapi-badge vapi-badge-squad">Built with Squads</div>
2519
<br />
2620
Build a medical triage and scheduling assistant that can triage patients and schedule appointments for a clinic
2721
</Card>
2822
<Card title="Ecommerce Order Management" icon="shopping-cart" href="/squads/examples/ecommerce-order-management">
29-
<div className='absolute top-4 right-4'>
30-
<Icon icon="arrow-up-right-from-square" />
31-
</div>
3223
<div class="vapi-badge vapi-badge-squad">Built with Squads</div>
3324
<br />
3425
Build an ecommerce order management assistant that can track orders and process returns
3526
</Card>
3627
<Card title="Property Management" icon="building" href="/squads/examples/property-management">
37-
<div className='absolute top-4 right-4'>
38-
<Icon icon="arrow-up-right-from-square" />
39-
</div>
4028
<div class="vapi-badge vapi-badge-squad">Built with Squads</div>
4129
<br />
4230
Build a call routing workflow that dynamically routes tenant calls based on verification and inquiry type
4331
</Card>
4432
<Card title="Lead Qualification" icon="phone" href="/assistants/examples/lead-qualification">
45-
<div className='absolute top-4 right-4'>
46-
<Icon icon="arrow-up-right-from-square" />
47-
</div>
4833
<div class="vapi-badge vapi-badge-assistant">Built with Assistants</div>
4934
<br />
5035
Create an outbound sales agent that can schedule appointments automatically
5136
</Card>
5237
<Card title="Multilingual Support (Structured)" icon="globe" href="/squads/examples/multilingual-support">
53-
<div className='absolute top-4 right-4'>
54-
<Icon icon="arrow-up-right-from-square" />
55-
</div>
5638
<div class="vapi-badge vapi-badge-squad">Built with Squads</div>
5739
<br />
5840
Build a structured multilingual support workflow with language selection and dedicated conversation paths
5941
</Card>
6042
<Card title="Dynamic Multilingual Agent" icon="language" href="/assistants/examples/multilingual-agent">
61-
<div className='absolute top-4 right-4'>
62-
<Icon icon="arrow-up-right-from-square" />
63-
</div>
6443
<div class="vapi-badge vapi-badge-assistant">Built with Assistants</div>
6544
<br />
6645
Build a dynamic agent with automatic language detection and real-time language switching
6746
</Card>
6847
<Card title="Support Escalation" icon="headset" href="/assistants/examples/support-escalation">
69-
<div className='absolute top-4 right-4'>
70-
<Icon icon="arrow-up-right-from-square" />
71-
</div>
7248
<div class="vapi-badge vapi-badge-assistant">Built with Assistants</div>
7349
<br />
7450
Build an intelligent support escalation system with dynamic routing based on customer tier and issue complexity
7551
</Card>
7652
<Card title="Docs Agent" icon="book-open" href="/assistants/examples/docs-agent">
77-
<div className='absolute top-4 right-4'>
78-
<Icon icon="arrow-up-right-from-square" />
79-
</div>
8053
<div class="vapi-badge vapi-badge-assistant">Built with Assistants</div>
8154
<br />
8255
Build a docs agent that can answer questions about your documentation
8356
</Card>
8457
<Card title="Inbound Support" icon="headset" href="/assistants/examples/inbound-support">
85-
<div className='absolute top-4 right-4'>
86-
<Icon icon="arrow-up-right-from-square" />
87-
</div>
8858
<div class="vapi-badge vapi-badge-assistant">Built with Assistants</div>
8959
<br />
9060
Build a technical support assistant that remembers where you left off between calls
9161
</Card>
9262
<Card title="Voice Widget" icon="microphone" href="/assistants/examples/voice-widget">
93-
<div className='absolute top-4 right-4'>
94-
<Icon icon="arrow-up-right-from-square" />
95-
</div>
9663
<div class="vapi-badge vapi-badge-assistant">Built with Assistants</div>
9764
<br />
9865
Easily integrate the Vapi Voice Widget into your website for enhanced user interaction
9966
</Card>
10067
<Card title="Vapi CLI" icon="terminal" href="/cli">
101-
<div className='absolute top-4 right-4'>
102-
<Icon icon="arrow-up-right-from-square" />
103-
</div>
10468
<div class="vapi-badge" style="background-color: #0e0e13; color: #12a594;">Developer Tool</div>
10569
<br />
10670
Build voice AI agents faster with the Vapi CLI - project integration, local testing, and IDE enhancement

fern/quickstart/introduction.mdx

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,6 @@ Vapi offers two main primitives, designed for different use cases:
4343
iconType="solid"
4444
href="/assistants/quickstart"
4545
>
46-
<div className='absolute top-4 right-4'>
47-
<Icon icon="arrow-up-right-from-square" />
48-
</div>
4946
**Best for:** Most use cases and fast iteration
5047
<br />
5148
Assistants use a single system prompt plus tools and structured outputs. Perfect for:
@@ -59,9 +56,6 @@ Vapi offers two main primitives, designed for different use cases:
5956
iconType="solid"
6057
href="/squads"
6158
>
62-
<div className='absolute top-4 right-4'>
63-
<Icon icon="arrow-up-right-from-square" />
64-
</div>
6559
**Best for:** Multi-assistant setups with specialization
6660
<br />
6761
Squads orchestrate multiple assistants with context-preserving transfers. Ideal for:
@@ -88,9 +82,6 @@ Vapi offers two main primitives, designed for different use cases:
8882
iconType="solid"
8983
href="/quickstart/phone"
9084
>
91-
<div className='absolute top-4 right-4'>
92-
<Icon icon="arrow-up-right-from-square" />
93-
</div>
9485
- Create a voice agent for inbound/outbound calls
9586
- Build customer support or sales automation
9687
- Get started with no coding required
@@ -103,9 +94,6 @@ Vapi offers two main primitives, designed for different use cases:
10394
iconType="solid"
10495
href="/quickstart/web"
10596
>
106-
<div className='absolute top-4 right-4'>
107-
<Icon icon="arrow-up-right-from-square" />
108-
</div>
10997
- Add voice capabilities to your web application
11098
- Integrate voice chat into your existing product
11199
- Build with code and SDKs
@@ -127,9 +115,6 @@ The Vapi CLI brings the full power of the platform to your terminal:
127115
iconType="solid"
128116
href="/cli"
129117
>
130-
<div className='absolute top-4 right-4'>
131-
<Icon icon="arrow-up-right-from-square" />
132-
</div>
133118
Install in seconds with:
134119
```bash
135120
curl -sSL https://vapi.ai/install.sh | bash
@@ -147,9 +132,6 @@ The Vapi CLI brings the full power of the platform to your terminal:
147132
iconType="solid"
148133
href="/assistants/examples/inbound-support"
149134
>
150-
<div className='absolute top-4 right-4'>
151-
<Icon icon="arrow-up-right-from-square" />
152-
</div>
153135
<div class="vapi-badge vapi-badge-assistant">Built with Assistants</div>
154136

155137
Automate inbound support calls with agents that can access your knowledge base and escalate to humans when needed.
@@ -160,9 +142,6 @@ The Vapi CLI brings the full power of the platform to your terminal:
160142
iconType="solid"
161143
href="/assistants/examples/lead-qualification"
162144
>
163-
<div className='absolute top-4 right-4'>
164-
<Icon icon="arrow-up-right-from-square" />
165-
</div>
166145
<div class="vapi-badge vapi-badge-assistant">Built with Assistants</div>
167146

168147
Make outbound sales calls, qualify leads, and schedule appointments with sophisticated branching logic.
@@ -173,9 +152,6 @@ The Vapi CLI brings the full power of the platform to your terminal:
173152
iconType="solid"
174153
href="/assistants/examples/appointment-scheduling"
175154
>
176-
<div className='absolute top-4 right-4'>
177-
<Icon icon="arrow-up-right-from-square" />
178-
</div>
179155
<div class="vapi-badge vapi-badge-assistant">Built with Assistants</div>
180156

181157
Handle booking requests, check availability, and confirm appointments with conditional routing.
@@ -186,9 +162,6 @@ The Vapi CLI brings the full power of the platform to your terminal:
186162
iconType="solid"
187163
href="/squads/examples/clinic-triage-scheduling"
188164
>
189-
<div className='absolute top-4 right-4'>
190-
<Icon icon="arrow-up-right-from-square" />
191-
</div>
192165
<div class="vapi-badge vapi-badge-squad">Built with Squads</div>
193166

194167
Emergency routing and appointment scheduling for healthcare.
@@ -199,9 +172,6 @@ The Vapi CLI brings the full power of the platform to your terminal:
199172
iconType="solid"
200173
href="/squads/examples/ecommerce-order-management"
201174
>
202-
<div className='absolute top-4 right-4'>
203-
<Icon icon="arrow-up-right-from-square" />
204-
</div>
205175
<div class="vapi-badge vapi-badge-squad">Built with Squads</div>
206176

207177
Order tracking, returns, and customer support workflows.
@@ -212,9 +182,6 @@ The Vapi CLI brings the full power of the platform to your terminal:
212182
iconType="solid"
213183
href="/examples"
214184
>
215-
<div className='absolute top-4 right-4'>
216-
<Icon icon="arrow-up-right-from-square" />
217-
</div>
218185
See our collection of examples covering a wide range of use cases.
219186
</Card>
220187
</CardGroup>

0 commit comments

Comments
 (0)