-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebar.ts
More file actions
154 lines (154 loc) · 4.05 KB
/
sidebar.ts
File metadata and controls
154 lines (154 loc) · 4.05 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
module.exports = {
GithubProjectPackageSidebar: [
{
type: 'doc',
id: 'introduction',
label: 'Introduction',
},
{
type: 'category',
link: {
type: 'generated-index',
title: 'Prologue - GitHub Project PHP',
description: 'This section will give you a brief overview of the project and its features. Let\'s get started with the GitHub Project PHP.',
},
label: 'Prologue',
items: [
{
type: 'doc',
id: 'prologue/releases',
label: '🚀 Release Notes',
},
],
collapsed: false,
},
{
type: 'category',
link: {
type: 'generated-index',
title: 'Getting Started - GitHub Project PHP',
description: 'Let\'s get started with the GitHub Project PHP. You can find installation, configuration, and setup guides 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',
},
{
type: 'doc',
id: 'getting-started/webhook-setup',
label: '🔄 Webhook Setup',
},
],
collapsed: false,
},
{
type: 'category',
link: {
type: 'generated-index',
title: 'Advanced - GitHub Project PHP',
description: 'Advanced topics for customizing and extending the GitHub Project PHP package. How to customize the templates and use the API reference.',
},
label: 'Advanced',
items: [
{
type: 'doc',
id: 'advanced/templates',
label: '🎨 Customizing Templates',
},
{
type: 'doc',
id: 'advanced/api-reference',
label: '🔌 API Reference',
},
],
collapsed: false,
},
{
type: 'category',
link: {
type: 'generated-index',
title: 'Examples - GitHub Project PHP',
description: 'Practical examples and sample configurations for the GitHub Project PHP package.',
},
label: 'Examples',
items: [
{
type: 'doc',
id: 'examples/index',
label: '📋 Examples Overview',
},
],
collapsed: false,
},
{
type: 'category',
link: {
type: 'generated-index',
title: 'Support - GitHub Project PHP',
description: 'Get help with common issues, report bugs, or request new features.',
},
label: 'Support',
items: [
{
type: 'doc',
id: 'support/troubleshooting',
label: '🐞 Troubleshooting',
},
{
type: 'doc',
id: 'support/feature-requests',
label: '💡 Feature Requests',
},
{
type: 'doc',
id: 'support/issues',
label: '⚠️ Report Issues',
},
],
collapsed: false,
},
{
type: 'category',
link: {
type: 'generated-index',
title: 'Resources - GitHub Project PHP',
description: 'Additional resources and links for the GitHub Project PHP package.',
},
label: 'Resources',
collapsed: false,
items: [
{
type: 'link',
label: 'GitHub Repository',
description: 'View the source code on GitHub',
href: 'https://github.com/cslant/github-project-php',
},
{
type: 'link',
label: 'Packagist',
description: 'View on Packagist',
href: 'https://packagist.org/packages/cslant/github-project-php',
},
{
type: 'link',
label: 'GitHub Issues',
description: 'Report issues or bugs',
href: 'https://github.com/cslant/github-project-php/issues',
},
],
},
],
};