-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebar.ts
128 lines (128 loc) · 3.66 KB
/
sidebar.ts
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
module.exports = {
LaravelLikePackageSidebar: [
{
type: 'doc',
id: 'introduction',
label: '👋 Introduction',
},
{
type: 'category',
link: {
type: 'generated-index',
title: 'Prologue - Laravel Like Package',
description: 'This section will give you a brief overview of the project and its features. Let\'s get started with the Laravel Like Package.',
},
label: 'Prologue',
items: [
{
type: 'doc',
id: 'prologue/releases',
label: '🚀 Release Notes',
},
],
collapsed: false,
},
{
type: 'category',
link: {
type: 'generated-index',
title: 'Getting Started - Laravel Like Package',
description: 'Let\'s get started with the Laravel Like Package.' +
'You can also find the installation guide and the configuration guide here.',
},
label: 'Getting Started',
items: [
{
type: 'doc',
id: 'getting-started/requirements',
label: '📋 Requirements',
},
{
type: 'doc',
id: 'getting-started/installation',
label: '🔧 Installation',
},
{
type: 'doc',
id: 'getting-started/configuration',
label: '🛠 Configuration',
},
],
collapsed: false,
},
{
type: 'category',
link: {
type: 'generated-index',
title: 'Usage - Laravel Like Package',
description: 'This section will guide you on how to use the Laravel Like Package. Let\'s get started with your first interaction in Laravel project!',
},
label: 'Usage',
items: [
{
type: 'doc',
id: 'usage/change_default_interaction',
label: '🔄 Change Default Interaction',
},
],
collapsed: false,
},
{
type: 'category',
link: {
type: 'generated-index',
title: 'Development - Laravel Like Package',
description: 'This section will guide for the development of the Laravel Like Package. Let\'s get started with the development!',
},
label: 'Development',
items: [
{
type: 'doc',
id: 'development/laravel-like-flow',
label: '🌊 Laravel Like Flow',
},
],
collapsed: false,
},
{
type: 'category',
link: {
title: 'Support - Laravel Like Package',
type: 'generated-index',
description: 'Please check this section if you have any problems with the bot or you want to request a new feature. We will be happy to help you!',
},
label: 'Support',
items: [
{
type: 'doc',
id: 'support/feature-requests',
label: '🚀 Feature Requests',
},
{
type: 'doc',
id: 'support/issues',
label: '🐛 Issues',
},
],
collapsed: false,
},
{
type: 'category',
link: {
type: 'generated-index',
title: 'GitHub Source - Laravel Like Package',
description: 'Please check this section if you want to contribute to the Laravel Like package. We will be happy to accept your contributions. Let\'s make the package better together!',
},
label: 'GitHub Source',
collapsed: false,
items: [
{
type: 'link',
label: 'Laravel Like Package',
description: 'This package provides an interaction way to add like 👍, dislike 👎, and love ❤️ features to your Laravel application.',
href: 'https://github.com/cslant/laravel-like',
},
],
},
],
};