-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsidebars.ts
More file actions
50 lines (48 loc) · 1.14 KB
/
Copy pathsidebars.ts
File metadata and controls
50 lines (48 loc) · 1.14 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
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
docsSidebar: [
'intro',
'quick-start',
{
type: 'category',
label: 'Platform Setup',
link: {type: 'doc', id: 'setup/installation'},
items: [
'setup/expo-plugin',
'setup/ios-apple-pay',
'setup/android-google-pay',
'setup/bare-react-native',
],
},
{
type: 'category',
label: 'Backend Processing',
link: {type: 'doc', id: 'payment-flow'},
items: ['payment-flow', 'guides/server-processing'],
},
'integrations/przelewy24',
{
type: 'category',
label: 'API Reference',
link: {type: 'doc', id: 'api/use-payment-checkout'},
items: [
'api/components',
'api/hybrid-payment-handler',
'api/utils',
'api/types',
],
},
{
type: 'category',
label: 'Recipes & Guides',
link: {type: 'doc', id: 'guides/manual-flow'},
items: [
'guides/dynamic-cart',
],
},
'troubleshooting',
'examples',
'compatibility',
],
};
export default sidebars;