-
Notifications
You must be signed in to change notification settings - Fork 88
/
navbar.js
90 lines (89 loc) · 2.38 KB
/
navbar.js
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
module.exports = {
title: '',
logo: {
alt: 'SailPoint Developer Community',
src: 'img/SailPoint-Developer-Community-Lockup.png',
srcDark: 'img/SailPoint-Developer-Community-Inverse-Lockup.png',
},
items: [
{
type: 'dropdown',
label: 'Documentation',
position: 'left',
items: [
{label: 'Identity Security Cloud', to: '/docs'},
{label: 'IdentityIQ', to: '/docs/iiq'},
],
},
{
type: 'dropdown',
label: 'API Specifications',
position: 'left',
items: [
{label: 'Identity Security Cloud', to: '/docs/api/v2024'},
{label: 'IdentityIQ', to: '/docs/api/iiq'},
{label: 'NERM', to: '/docs/api/nerm/v1'},
],
},
{
type: 'dropdown',
label: 'Tools',
position: 'left',
items: [
{label: 'SDKs', to: '/docs/tools/sdk'},
{label: 'CLI', to: '/docs/tools/cli'},
{label: 'JSON Path Evaluator', to: '/tools/json-path-evaluator'},
{label: 'Rule Development Kit', to: '/docs/tools/rule-development-kit'},
{label: 'UI Development Kit', to: '/docs/tools/ui-development-kit'},
{label: 'Community Toolbox', to: '/docs/tools/community-toolbox'}
],
},
{
type: 'dropdown',
label: 'Community',
position: 'left',
items: [
{
label: 'Developer Forum',
to: 'https://developer.sailpoint.com/discuss/',
},
{
label: 'CoLab Marketplace',
to: '/colab',
},
{
label: 'Developer Blog',
to: '/blog',
},
{
label: 'Ambassador Program',
to: '/ambassadors',
},
],
},
{
position: 'left',
label: 'Video Library',
to: '/videos',
},
{
type: 'dropdown',
label: 'Support',
position: 'right',
items: [
{
label: 'Submit Support Ticket',
href: 'https://support.sailpoint.com/csm?id=sc_cat_item&sys_id=a78364e81bec151050bcc8866e4bcb5c&referrer=popular_items',
},
{label: 'Compass', href: 'https://community.sailpoint.com'},
{label: 'Platform Status', href: 'https://status.sailpoint.com/'},
],
},
{
position: 'right',
to: 'https://github.com/sailpoint-oss',
className: 'header-github-link',
'aria-label': 'SailPoint Open-source GitHub',
},
],
};