Skip to content

Commit 06a792a

Browse files
committed
feat(quickstart): new "Get started" section
1 parent 42884c9 commit 06a792a

File tree

12 files changed

+517
-234
lines changed

12 files changed

+517
-234
lines changed

fern/advanced/sip/sip-plivo.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ Indian phone numbers cannot be used with Plivo on Vapi due to TRAI regulations.
150150
```
151151
</Step>
152152
<Step title="Create a Vapi Assistant">
153-
1. [Follow this guide to create an assistant](https://docs.vapi.ai/quickstart/dashboard#create-an-assistant)
153+
1. [Follow this guide to create an assistant](https://docs.vapi.ai/quickstart/phone#create-your-first-voice-assistant)
154154
2. Note your Assistant ID for making calls.
155155
</Step>
156156
<Step title="Make Outbound Calls">

fern/advanced/sip/sip-twilio.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ This guide walks you through setting up both outbound and inbound SIP trunking b
144144

145145
1. **Create and Configure a Vapi Assistant**
146146

147-
- Create an assistant following the steps at [https://docs.vapi.ai/quickstart/dashboard#create-an-assistant](https://docs.vapi.ai/quickstart/dashboard#create-an-assistant)
147+
- Create an assistant following the steps at [https://docs.vapi.ai/quickstart/phone#create-your-first-voice-assistant](https://docs.vapi.ai/quickstart/phone#create-your-first-voice-assistant)
148148
- In the assistant settings, link it to the phone number you created
149149

150150
Now when someone calls your Twilio number, the call will be routed to your Vapi assistant.

fern/assets/styles.css

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,43 @@
77
font-weight: 500;
88
}
99

10+
/* Badge/Pill Styles */
11+
.vapi-badge {
12+
display: inline-block;
13+
padding: 2px 8px;
14+
border-radius: 12px;
15+
font-size: 0.6875rem;
16+
font-weight: 500;
17+
text-transform: uppercase;
18+
letter-spacing: 0.3px;
19+
margin-bottom: 6px;
20+
}
21+
22+
.vapi-badge-assistant {
23+
background-color: #E6F7F4;
24+
color: #0F766E;
25+
border: 1px solid #A7F3D0;
26+
}
27+
28+
.vapi-badge-workflow {
29+
background-color: #EEF2FF;
30+
color: #4338CA;
31+
border: 1px solid #C7D2FE;
32+
}
33+
34+
/* Dark mode adjustments */
35+
:is(.dark) .vapi-badge-assistant {
36+
background-color: #134E4A;
37+
color: #99F6E4;
38+
border: 1px solid #14B8A6;
39+
}
40+
41+
:is(.dark) .vapi-badge-workflow {
42+
background-color: #312E81;
43+
color: #C7D2FE;
44+
border: 1px solid #6366F1;
45+
}
46+
1047
/* for a grid of videos */
1148

1249
.video-grid {

fern/docs.yml

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,13 @@ navigation:
9595
layout:
9696
- section: Get started
9797
contents:
98-
- page: Quickstart
99-
icon: fa-light fa-rocket
100-
path: quickstart/dashboard.mdx
101-
- page: Make a web call
98+
- page: Introduction
99+
icon: fa-light fa-info-circle
100+
path: quickstart/introduction.mdx
101+
- page: Phone calls
102+
icon: fa-solid fa-phone
103+
path: quickstart/phone.mdx
104+
- page: Web integration
102105
icon: fa-light fa-browser
103106
path: quickstart/web.mdx
104107
- section: How Vapi works
@@ -123,7 +126,7 @@ navigation:
123126
path: examples/docs-agent.mdx
124127
icon: fa-light fa-microphone
125128

126-
- section: Assistant customization
129+
- section: Assistants
127130
contents:
128131
- section: Conversation behavior
129132
icon: fa-light fa-comments
@@ -690,9 +693,11 @@ redirects:
690693
- source: "api-reference/calls/create-call"
691694
destination: "https://api.vapi.ai/api#/Calls/CallController_create"
692695
- source: "/getting_started"
693-
destination: "/quickstart/dashboard"
696+
destination: "/quickstart/phone"
694697
- source: "/dashboard"
695-
destination: "/quickstart/dashboard"
698+
destination: "/quickstart/phone"
699+
- source: "/quickstart/dashboard"
700+
destination: "/quickstart/phone"
696701
- source: "/provider_keys"
697702
destination: "/assistants/provider-keys"
698703
- source: "/provider-keys"
@@ -782,9 +787,9 @@ redirects:
782787
- source: /phone-calling/voicemail-detection
783788
destination: /calls/voicemail-detection
784789
- source: /quickstart/phone/inbound
785-
destination: /quickstart/dashboard
790+
destination: /quickstart/phone
786791
- source: /quickstart/phone/outbound
787-
destination: /quickstart/dashboard
792+
destination: /quickstart/phone
788793
- source: /introduction
789794
destination: /quickstart
790795
- source: /welcome
@@ -803,3 +808,5 @@ redirects:
803808
destination: /workflows/examples/lead-qualification
804809
- source: /workflows
805810
destination: /workflows/quickstart
811+
- source: /web-integration
812+
destination: /web

fern/overview.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ Each layer is highly customizable and we support dozens of models across STT, LL
3737
## Quickstart Guides
3838
<CardGroup cols={2}>
3939
<Card
40-
title="No-code Quickstart"
41-
href="/quickstart/dashboard">
40+
title="Phone Calls"
41+
href="/quickstart/phone">
4242
The easiest way to start with Vapi. Build a voice agent in 5 minutes.
4343
</Card>
4444
<Card
45-
title="Web Quickstart"
46-
href="https://docs.vapi.ai/quickstart/web">
47-
Quickly get started making web calls.
45+
title="Web Integration"
46+
href="/quickstart/web-integration">
47+
Integrate voice calls into your web application.
4848
</Card>
4949
</CardGroup>
5050

fern/pricing.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ slug: pricing
3535

3636
### Starter Credits
3737

38-
Every new account is granted **$10 in free credits** to begin testing voice workflows. You can [begin using Vapi](/quickstart/dashboard) without a credit card.
38+
Every new account is granted **$10 in free credits** to begin testing voice workflows. You can [begin using Vapi](/quickstart/phone) without a credit card.
3939

4040
---
4141

fern/quickstart/dashboard.mdx

Lines changed: 0 additions & 141 deletions
This file was deleted.

0 commit comments

Comments
 (0)