Skip to content

Commit 1517a6c

Browse files
authored
adjust supporter logos (#15)
* adjust supporter logos * shuffle order * fix azure link * add cirun and quansight to infra * link whole card * fix color * remove randomizer (breaks links in dark/light switches) * pre-commit
1 parent 7ba7cb6 commit 1517a6c

File tree

13 files changed

+286
-44
lines changed

13 files changed

+286
-44
lines changed

src/components/Supporters/index.jsx

Lines changed: 69 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,18 @@ const infrastructure = [
2424
width: 250,
2525
},
2626
{
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,
3232
},
3333
{
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,
3939
},
4040
{
4141
name: "Digital Ocean",
@@ -44,11 +44,46 @@ const infrastructure = [
4444
dark: "img/supporters/do_dark.svg",
4545
width: 250,
4646
},
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+
},
4754
{
4855
name: "Oracle Cloud",
4956
link: "https://www.oracle.com/cloud/",
5057
light: "img/supporters/oracle_light.svg",
5158
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",
5287
width: 200,
5388
},
5489
];
@@ -61,6 +96,13 @@ const developer = [
6196
dark: "img/supporters/anaconda_dark.svg",
6297
width: 250,
6398
},
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+
},
64106
{
65107
name: "Nvidia",
66108
link: "https://www.nvidia.com/",
@@ -78,8 +120,8 @@ const developer = [
78120
{
79121
name: "Quansight Labs",
80122
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",
83125
width: 250,
84126
},
85127
{
@@ -148,19 +190,20 @@ export default function Supporters() {
148190
<div className={styles.card}>
149191
{financial.map(
150192
({ 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}>
153195
<ThemedImage
154196
className={styles.image}
155197
alt={`${name} logo`}
198+
title={`Go to ${name}'s website`}
156199
sources={{
157200
light: useBaseUrl(`${light}`),
158201
dark: useBaseUrl(`${dark}`),
159202
}}
160203
width={width}
161204
/>
162-
</Link>
163-
</div>
205+
</div>
206+
</Link>
164207
)
165208
)}
166209
</div>
@@ -177,19 +220,20 @@ export default function Supporters() {
177220
<div className={styles.card}>
178221
{infrastructure.map(
179222
({ 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}>
182225
<ThemedImage
183226
className={styles.image}
184227
alt={`${name} logo`}
228+
title={`Go to ${name}'s website`}
185229
sources={{
186230
light: useBaseUrl(`${light}`),
187231
dark: useBaseUrl(`${dark}`),
188232
}}
189233
width={width}
190234
/>
191-
</Link>
192-
</div>
235+
</div>
236+
</Link>
193237
)
194238
)}
195239
</div>
@@ -204,19 +248,20 @@ export default function Supporters() {
204248
<div className={styles.card}>
205249
{developer.map(
206250
({ 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}>
209253
<ThemedImage
210254
className={styles.image}
211255
alt={`${name} logo`}
256+
title={`Go to ${name}'s website`}
212257
sources={{
213258
light: useBaseUrl(`${light}`),
214259
dark: useBaseUrl(`${dark}`),
215260
}}
216261
width={width}
217262
/>
218-
</Link>
219-
</div>
263+
</div>
264+
</Link>
220265
)
221266
)}
222267
</div>

static/img/supporters/azure.png

2.93 KB
Loading

static/img/supporters/cirun_dark.svg

Lines changed: 97 additions & 0 deletions
Loading

static/img/supporters/cirun_light.svg

Lines changed: 98 additions & 0 deletions
Loading

static/img/supporters/github_dark.png

13.5 KB
Loading
8.22 KB
Loading

static/img/supporters/ioos.png

18.5 KB
Loading

0 commit comments

Comments
 (0)