-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathLinks.store.ts
119 lines (119 loc) · 3.06 KB
/
Links.store.ts
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
export default [
{
title: 'Get in touch with us',
vercel: {
name: 'Vercel banner',
img: require('../public/assets/images/vercel-banner.svg'),
href: 'https://vercel.com/?utm_source=eos-icons&utm_campaign=oss',
category: 'External link',
action: 'Link to Vercel Homepage',
label: 'Footer',
target: '_blank'
},
links: [
{
name: 'EOS on Twitter',
href: 'https://twitter.com/eosdesignsystem',
category: 'External link',
action: 'EOS in Twitter',
label: 'Footer',
target: '_blank'
},
{
name: 'Join us on Slack',
href: 'https://slack.eosdesignsystem.com/',
category: 'External link',
action: 'Link to EOS Slack',
label: 'Footer',
target: '_blank'
},
{
name: 'Repository',
href: 'https://github.com/EOS-uiux-Solutions/eos-icons-landing',
category: 'External link',
action: 'Link to Github repo',
label: 'Footer',
target: '_blank'
},
{
name: 'Report an issue',
href: 'https://github.com/EOS-uiux-Solutions/eos-icons-landing/issues',
category: 'External link',
action: 'Link to Github issues',
label: 'Footer',
target: '_blank'
}
]
},
{
title: 'Resources',
links: [
{
name: 'EOS Icons Gem',
href: 'https://rubygems.org/gems/eos-icons-font',
category: 'External link',
action: 'Link to EOS Icons Gem',
label: 'Footer',
target: '_blank'
},
{
name: 'EOS Icons NPM',
href: 'https://www.npmjs.com/package/eos-icons',
category: 'External link',
action: 'Link to EOS NPM',
label: 'Footer',
target: '_blank'
},
{
name: 'How to collaborate',
href: 'https://brand.eosdesignsystem.com/ContributingGuide',
category: 'External link',
action: 'Link to how to collaborate',
label: 'Footer',
target: '_blank'
}
]
},
{
title: 'EOS Products',
links: [
{
name: 'Design system',
href: 'https://suse.eosdesignsystem.com/',
category: 'External link',
action: 'Link to EOS Design System',
label: 'Footer',
target: '_blank'
},
{
name: 'User story',
href: 'https://userstory.eosdesignsystem.com/',
category: 'External link',
action: 'Link to user story',
label: 'Footer',
target: '_blank'
},
{
name: 'EOS Solutions',
href: 'https://www.eosdesignsystem.com/',
category: 'External link',
action: 'Link to how EOS Solutions',
label: 'Footer',
target: '_blank'
}
]
},
{
title: 'EOS Products',
img: require('../public/assets/images/eos-icons-logo.svg'),
links: [
{
name: 'Cookies Policy',
href: '/cookies-policy',
category: 'Internal link',
action: 'Link to Cookies policy',
label: 'Footer'
}
]
}
]