-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
104 lines (102 loc) · 2.24 KB
/
sidebars.js
File metadata and controls
104 lines (102 loc) · 2.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
// sidebars.js
const sidebars = {
tutorialSidebar: [
{
type: "category",
label: "Introduction",
items: [
"introduction/what-is-kirimy",
"introduction/features",
"introduction/architecture",
"introduction/login-methods",
"introduction/pricing-and-plans",
// "introduction/faq", // optional
],
},
{
type: "category",
label: "Getting Started",
items: ["getting-started/login", "getting-started/dashboard"],
},
{
type: "category",
label: "Sessions",
items: [
"sessions/overview",
"sessions/create-session",
"sessions/qr-and-status",
"sessions/edit-session",
"sessions/reconnect-terminate-delete",
],
},
{
type: "category",
label: "Contacts",
items: [
"contacts/contact-list",
"contacts/import-contact",
"contacts/lookup",
"contacts/delete",
],
},
{
type: "category",
label: "Templates",
items: [
"templates/create-template",
"templates/using-ai",
"templates/template-format-guide",
"templates/template-preview",
],
},
{
type: "category",
label: "Blasting",
items: [
"blasting/create-blasting",
"blasting/schedule-and-interval",
"blasting/play-stop-edit",
"blasting/blast-logs",
],
},
{
type: "category",
label: "Blast Report",
items: [
"blast-report/process-log",
"blast-report/summary-log",
"blast-report/message-log-detail",
],
},
{
type: "category",
label: "Chat",
items: ["chat/manual-chat"],
},
{
type: "category",
label: "API",
items: ["api/client-api"],
},
{
type: "category",
label: "AI Agent",
items: [
"ai-agent/create-agent",
"ai-agent/system-message",
"ai-agent/upload-knowledge",
"ai-agent/whatsapp-integration",
],
},
{
type: "category",
label: "Tickets",
items: [
"tickets/ticket-list",
"tickets/ticket-detail",
"tickets/auto-ticket-creation",
],
},
],
};
module.exports = sidebars;