@@ -24,18 +24,18 @@ const infrastructure = [
24
24
width : 250 ,
25
25
} ,
26
26
{
27
- name : "Open Source Lab " ,
28
- link : "https://osuosl.org /" ,
29
- light : "img/supporters/osl_light.svg " ,
30
- dark : "img/supporters/osl_dark.svg " ,
31
- width : 150 ,
27
+ name : "Azure Pipelines " ,
28
+ link : "https://azure.microsoft.com/products/devops /" ,
29
+ light : "img/supporters/azure.png " ,
30
+ dark : "img/supporters/azure.png " ,
31
+ width : 250 ,
32
32
} ,
33
33
{
34
- name : "OVHcloud " ,
35
- link : "https://www.ovhcloud.com/ " ,
36
- light : "img/supporters/ovh_light .svg" ,
37
- dark : "img/supporters/ovh_dark .svg" ,
38
- width : 250 ,
34
+ name : "Cirun " ,
35
+ link : "https://cirun.io " ,
36
+ light : "img/supporters/cirun_light .svg" ,
37
+ dark : "img/supporters/cirun_dark .svg" ,
38
+ width : 200 ,
39
39
} ,
40
40
{
41
41
name : "Digital Ocean" ,
@@ -44,11 +44,46 @@ const infrastructure = [
44
44
dark : "img/supporters/do_dark.svg" ,
45
45
width : 250 ,
46
46
} ,
47
+ {
48
+ name : "Github" ,
49
+ link : "https://github.com" ,
50
+ light : "img/supporters/github_light.png" ,
51
+ dark : "img/supporters/github_dark.png" ,
52
+ width : 150 ,
53
+ } ,
47
54
{
48
55
name : "Oracle Cloud" ,
49
56
link : "https://www.oracle.com/cloud/" ,
50
57
light : "img/supporters/oracle_light.svg" ,
51
58
dark : "img/supporters/oracle_dark.svg" ,
59
+ width : 180 ,
60
+ } ,
61
+ {
62
+ name : "Open Source Lab" ,
63
+ link : "https://osuosl.org/" ,
64
+ light : "img/supporters/osl_light.svg" ,
65
+ dark : "img/supporters/osl_dark.svg" ,
66
+ width : 150 ,
67
+ } ,
68
+ {
69
+ name : "OVHcloud" ,
70
+ link : "https://www.ovhcloud.com/" ,
71
+ light : "img/supporters/ovh_light.svg" ,
72
+ dark : "img/supporters/ovh_dark.svg" ,
73
+ width : 220 ,
74
+ } ,
75
+ {
76
+ name : "Quansight" ,
77
+ link : "https://www.quansight.com/" ,
78
+ light : "img/supporters/quansight_light.svg" ,
79
+ dark : "img/supporters/quansight_dark.svg" ,
80
+ width : 80 ,
81
+ } ,
82
+ {
83
+ name : "Travis CI" ,
84
+ link : "https://www.travis-ci.com/" ,
85
+ light : "img/supporters/travis_light.png" ,
86
+ dark : "img/supporters/travis_dark.png" ,
52
87
width : 200 ,
53
88
} ,
54
89
] ;
@@ -61,6 +96,13 @@ const developer = [
61
96
dark : "img/supporters/anaconda_dark.svg" ,
62
97
width : 250 ,
63
98
} ,
99
+ {
100
+ name : "IOOS Integrated Ocean Observing System" ,
101
+ link : "https://ioos.noaa.gov/" ,
102
+ light : "img/supporters/ioos.png" ,
103
+ dark : "img/supporters/ioos.png" ,
104
+ width : 150 ,
105
+ } ,
64
106
{
65
107
name : "Nvidia" ,
66
108
link : "https://www.nvidia.com/" ,
@@ -78,8 +120,8 @@ const developer = [
78
120
{
79
121
name : "Quansight Labs" ,
80
122
link : "https://labs.quansight.org/" ,
81
- light : "img/supporters/quansight_light .svg" ,
82
- dark : "img/supporters/quansight_dark .svg" ,
123
+ light : "img/supporters/quansightlabs_light .svg" ,
124
+ dark : "img/supporters/quansightlabs_dark .svg" ,
83
125
width : 250 ,
84
126
} ,
85
127
{
@@ -148,19 +190,20 @@ export default function Supporters() {
148
190
< div className = { styles . card } >
149
191
{ financial . map (
150
192
( { name, link, light, dark, width } , index ) => (
151
- < div className = { styles . cardWrapper } key = { index } >
152
- < Link to = { link } >
193
+ < Link to = { link } >
194
+ < div className = { styles . cardWrapper } key = { index } >
153
195
< ThemedImage
154
196
className = { styles . image }
155
197
alt = { `${ name } logo` }
198
+ title = { `Go to ${ name } 's website` }
156
199
sources = { {
157
200
light : useBaseUrl ( `${ light } ` ) ,
158
201
dark : useBaseUrl ( `${ dark } ` ) ,
159
202
} }
160
203
width = { width }
161
204
/>
162
- </ Link >
163
- </ div >
205
+ </ div >
206
+ </ Link >
164
207
)
165
208
) }
166
209
</ div >
@@ -177,19 +220,20 @@ export default function Supporters() {
177
220
< div className = { styles . card } >
178
221
{ infrastructure . map (
179
222
( { name, link, light, dark, width } , index ) => (
180
- < div className = { styles . cardWrapper } key = { index } >
181
- < Link to = { link } >
223
+ < Link to = { link } >
224
+ < div className = { styles . cardWrapper } key = { index } >
182
225
< ThemedImage
183
226
className = { styles . image }
184
227
alt = { `${ name } logo` }
228
+ title = { `Go to ${ name } 's website` }
185
229
sources = { {
186
230
light : useBaseUrl ( `${ light } ` ) ,
187
231
dark : useBaseUrl ( `${ dark } ` ) ,
188
232
} }
189
233
width = { width }
190
234
/>
191
- </ Link >
192
- </ div >
235
+ </ div >
236
+ </ Link >
193
237
)
194
238
) }
195
239
</ div >
@@ -204,19 +248,20 @@ export default function Supporters() {
204
248
< div className = { styles . card } >
205
249
{ developer . map (
206
250
( { name, link, light, dark, width } , index ) => (
207
- < div className = { styles . cardWrapper } key = { index } >
208
- < Link to = { link } >
251
+ < Link to = { link } >
252
+ < div className = { styles . cardWrapper } key = { index } >
209
253
< ThemedImage
210
254
className = { styles . image }
211
255
alt = { `${ name } logo` }
256
+ title = { `Go to ${ name } 's website` }
212
257
sources = { {
213
258
light : useBaseUrl ( `${ light } ` ) ,
214
259
dark : useBaseUrl ( `${ dark } ` ) ,
215
260
} }
216
261
width = { width }
217
262
/>
218
- </ Link >
219
- </ div >
263
+ </ div >
264
+ </ Link >
220
265
)
221
266
) }
222
267
</ div >
0 commit comments