-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathfooter.js
93 lines (93 loc) · 2.41 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
module.exports.footer = {
style: 'dark',
links: [
{
title: 'Docs',
items: [
{
label: 'What is Tolgee',
to: '/platform/',
},
{
label: 'Get Started with Tolgee JS',
to: '/js-sdk',
},
{
label: 'Using Tolgee App',
to: '/platform',
},
{
label: 'Running server',
to: '/platform/self_hosting/running_with_docker',
},
{
label: 'Chrome localization plugin',
href: 'https://chrome.google.com/webstore/detail/tolgee-tools/hacnbapajkkfohnonhbmegojnddagfnj',
},
{
label: 'Figma localization plugin',
href: 'https://www.figma.com/community/plugin/1212381421658754793/tolgee-localization',
},
],
},
{
title: 'Community',
items: [
{
label: 'Slack',
href: 'https://join.slack.com/t/tolgeecommunity/shared_invite/zt-195isb5u8-_RcSRgVJfvgsPpOBIok~IQ',
},
{
label: 'GitHub',
href: 'https://github.com/tolgee',
},
{
label: 'Discussions',
href: 'https://github.com/tolgee/tolgee-platform/discussions',
},
{
label: 'Docker Hub',
href: 'https://hub.docker.com/orgs/tolgee',
},
{
label: 'Npm',
href: 'https://www.npmjs.com/org/tolgee',
},
{ label: 'OSS Friends', href: '/oss-friends' },
],
},
{
title: 'More',
items: [
{
label: 'Go to App',
href: 'https://app.tolgee.io',
},
{
label: 'LinkedIn',
href: 'https://www.linkedin.com/company/tolgee',
},
{
label: 'Twitter',
href: 'https://twitter.com/Tolgee_i18n',
},
{
label: 'Facebook',
href: 'https://www.facebook.com/Tolgee.i18n',
},
{
label: 'Privacy policy',
href: '/docs/terms_and_conditions/privacy_policy',
},
{
label: 'Terms of use',
href: '/docs/terms_of_use',
},
{
html: '<a class="footer__link-item cky-banner-element" href="javascript:;">Cookie settings</a>',
},
],
},
],
copyright: `<a class="footer__link-item" href="/">© 2021-${new Date().getFullYear()} Tolgee s.r.o. All rights reserved</a>`,
};