-
Notifications
You must be signed in to change notification settings - Fork 85
/
footer.js
110 lines (110 loc) · 2.96 KB
/
footer.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
module.exports = {
style: 'light',
links: [
{
title: 'Identity Security Cloud',
items: [
{
label: 'Your First API Call',
to: 'docs/api/getting-started',
},
{
label: 'Build A Transform',
to: 'docs/extensibility/transforms/guides/your-first-transform',
},
{
label: 'Build A SaaS Connector',
to: 'docs/connectivity/saas-connectivity',
},
{
label: 'Get Certified',
href: 'https://university.sailpoint.com/Saba/Web_spf/NA10P1PRD075/guest/categorydetail/categ000000000003041/true/xxemptyxx/',
},
],
},
{
title: 'IdentityIQ',
items: [
{
label: 'Build A Plugin',
to: 'https://documentation.sailpoint.com/identityiq/help/plugins/identityiq_plugins.html',
},
{
label: 'Get Certified',
href: 'https://university.sailpoint.com/Saba/Web_spf/NA10P1PRD075/guest/categorydetail/categ000000000003042/true/xxemptyxx/',
},
],
},
{
title: 'Community',
items: [
{
label: 'Discuss',
to: 'https://developer.sailpoint.com/discuss',
},
{
label: 'Submit an Idea',
to: 'https://developer-sailpoint.ideas.aha.io/',
},
{
label: 'Contact Our Team',
to: 'https://developer.sailpoint.com/discuss/new-message?groupname=developer_relations',
},
],
},
{
title: 'More',
items: [
{
label: 'Engineering Blog',
href: 'https://medium.com/sailpointtechblog',
},
{
label: 'GitHub',
href: 'https://github.com/sailpoint-oss',
},
{
label: 'Twitter',
href: 'https://twitter.com/sailpoint',
},
],
},
{
title: 'Company',
items: [
{
label: 'The SailPoint Story',
to: 'https://www.sailpoint.com/company/',
},
{
label: 'The SailPoint Way',
to: 'https://www.sailpoint.com/company/diversity-inclusion-and-belonging/',
},
{
label: 'Leadership Team',
to: 'https://www.sailpoint.com/company/#h-our-leadership',
},
{
label: 'Become A Partner',
to: 'https://www.sailpoint.com/partners/become-partner/',
},
],
},
{
title: 'Legal',
items: [
{
label: 'Terms & Conditions',
to: 'https://developer.sailpoint.com/discuss/tos',
},
],
},
],
logo: {
alt: 'SailPoint Developer Community Logo',
src: '/img/SailPoint-Developer-Community-Lockup.png',
srcDark: 'img/SailPoint-Developer-Community-Inverse-Lockup.png',
href: 'https://developer.sailpoint.com',
},
copyright: `Copyright © ${new Date().getFullYear()} SailPoint Technologies, Inc. All Rights Reserved.`, // Updated with now private copyright info
};