Skip to content

Commit 907b3c7

Browse files
committed
Add AWS as sponsor
1 parent aea5793 commit 907b3c7

File tree

7 files changed

+185
-149
lines changed

7 files changed

+185
-149
lines changed

package-lock.json

Lines changed: 157 additions & 130 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/lib/images/sponsors/aws.png

-8.28 KB
Binary file not shown.

src/lib/images/sponsors/aws.svg

Lines changed: 1 addition & 0 deletions
Loading

src/lib/images/sponsors/aws1.svg

Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
-4.05 KB
Binary file not shown.

src/routes/Sponsors.svelte

Lines changed: 25 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
import adfinis from '$lib/images/sponsors/adfinis.png';
55
// import adnovum from '$lib/images/sponsors/adnovum.png';
66
import amanox from '$lib/images/sponsors/amanox.png';
7-
// import aws from '$lib/images/sponsors/aws.png';
7+
import aws from '$lib/images/sponsors/aws.svg';
88
// import azure from '$lib/images/sponsors/azure.png';
99
// import bedag from '$lib/images/sponsors/bedag.svg';
1010
import bespinian from '$lib/images/sponsors/bespinian.svg';
1111
// import camptocamp from '$lib/images/sponsors/camp-to-camp.png';
1212
// import cloud37 from '$lib/images/sponsors/cloud37.png';
1313
import cloudscale from '$lib/images/sponsors/cloudscale.png';
1414
import dieMobiliar from '$lib/images/sponsors/diemobiliar.svg';
15-
import diepost from '$lib/images/sponsors/diepost.webp';
15+
import diepost from '$lib/images/sponsors/diepost.svg';
1616
// import isovalent from '$lib/images/sponsors/isovalent.png';
1717
import peakscale from '$lib/images/sponsors/peakscale.svg';
1818
import postfinance from '$lib/images/sponsors/postfinance.svg';
@@ -156,6 +156,12 @@
156156
imgSrc: bespinian,
157157
link: 'https://bespinian.io/',
158158
tier: SponsorTier.Bronze
159+
},
160+
{
161+
name: 'Amazon Web Services',
162+
imgSrc: aws,
163+
link: 'https://aws.amazon.com/local/switzerland/',
164+
tier: SponsorTier.AfterParty
159165
}
160166
];
161167
@@ -184,7 +190,7 @@
184190
<div class="w-full grid md:grid-cols-3 items-center">
185191
{#each goldSponsors as sponsor (sponsor.name)}
186192
<a href={sponsor.link} target="_blank" rel="noopener" class="m-4">
187-
<div class="block p-4 w-full flex justify-center">
193+
<div class="block p-4 w-full flex justify-center max-h-36">
188194
<img src={sponsor.imgSrc} alt={sponsor.name} />
189195
</div>
190196
</a>
@@ -197,7 +203,7 @@
197203
<div class="w-full grid md:grid-cols-3 items-center">
198204
{#each beerSponsors as sponsor (sponsor.name)}
199205
<a href={sponsor.link} target="_blank" rel="noopener" class="m-4">
200-
<div class="block p-4 w-full flex justify-center">
206+
<div class="block p-4 w-full flex justify-center max-h-32">
201207
<img src={sponsor.imgSrc} alt={sponsor.name} />
202208
</div>
203209
</a>
@@ -210,8 +216,8 @@
210216
<div class="w-full grid md:grid-cols-3 items-center">
211217
{#each afterPartySponsors as sponsor (sponsor.name)}
212218
<a href={sponsor.link} target="_blank" rel="noopener" class="m-4">
213-
<div class="block p-4 w-full flex justify-center">
214-
<img src={sponsor.imgSrc} alt={sponsor.name} class="max-h-36" />
219+
<div class="block p-4 w-full flex justify-center max-h-28">
220+
<img src={sponsor.imgSrc} alt={sponsor.name} />
215221
</div>
216222
</a>
217223
{/each}
@@ -223,8 +229,8 @@
223229
<div class="w-full grid md:grid-cols-3 items-center">
224230
{#each gelatoSponsors as sponsor (sponsor.name)}
225231
<a href={sponsor.link} target="_blank" rel="noopener" class="m-4">
226-
<div class="block p-4 w-full flex justify-center">
227-
<img src={sponsor.imgSrc} alt={sponsor.name} class="max-h-36" />
232+
<div class="block p-4 w-full flex justify-center max-h-28">
233+
<img src={sponsor.imgSrc} alt={sponsor.name} />
228234
</div>
229235
</a>
230236
{/each}
@@ -233,11 +239,11 @@
233239

234240
{#if baristaSponsors.length > 0}
235241
<h3 class="h3 mt-24 w-full text-left">{$_('sponsors.tiers.barista')}</h3>
236-
<div class="w-full grid md:grid-cols-4 items-center">
242+
<div class="w-full grid md:grid-cols-3 items-center">
237243
{#each baristaSponsors as sponsor (sponsor.name)}
238244
<a href={sponsor.link} target="_blank" rel="noopener" class="m-4">
239-
<div class="block p-4 w-full flex justify-center">
240-
<img src={sponsor.imgSrc} alt={sponsor.name} class="max-h-36" />
245+
<div class="block p-4 w-full flex justify-center max-h-28">
246+
<img src={sponsor.imgSrc} alt={sponsor.name} />
241247
</div>
242248
</a>
243249
{/each}
@@ -249,8 +255,8 @@
249255
<div class="w-full grid md:grid-cols-4 items-center">
250256
{#each popcornSponsors as sponsor (sponsor.name)}
251257
<a href={sponsor.link} target="_blank" rel="noopener" class="m-4">
252-
<div class="block p-4 w-full flex justify-center">
253-
<img src={sponsor.imgSrc} alt={sponsor.name} class="max-h-36" />
258+
<div class="block p-4 w-full flex justify-center max-h-36">
259+
<img src={sponsor.imgSrc} alt={sponsor.name} />
254260
</div>
255261
</a>
256262
{/each}
@@ -262,8 +268,8 @@
262268
<div class="w-full grid md:grid-cols-4 items-center">
263269
{#each silverSponsors as sponsor (sponsor.name)}
264270
<a href={sponsor.link} target="_blank" rel="noopener" class="m-4">
265-
<div class="block p-4 w-full flex justify-center">
266-
<img src={sponsor.imgSrc} alt={sponsor.name} class="max-h-30" />
271+
<div class="block p-4 w-full flex justify-center max-h-30">
272+
<img src={sponsor.imgSrc} alt={sponsor.name} />
267273
</div>
268274
</a>
269275
{/each}
@@ -275,8 +281,8 @@
275281
<div class="w-full grid md:grid-cols-6 items-center">
276282
{#each bronzeSponsors as sponsor (sponsor.name)}
277283
<a href={sponsor.link} target="_blank" rel="noopener" class="m-4">
278-
<div class="block p-4 w-full flex justify-center">
279-
<img src={sponsor.imgSrc} alt={sponsor.name} class="max-h-28" />
284+
<div class="block p-4 w-full flex justify-center max-h-28">
285+
<img src={sponsor.imgSrc} alt={sponsor.name} />
280286
</div>
281287
</a>
282288
{/each}
@@ -288,8 +294,8 @@
288294
<div class="w-full grid md:grid-cols-4 items-center">
289295
{#each communitySponsors as sponsor (sponsor.name)}
290296
<a href={sponsor.link} target="_blank" rel="noopener" class="m-4">
291-
<div class="block p-4 w-full flex justify-center">
292-
<img src={sponsor.imgSrc} alt={sponsor.name} class="max-h-28" />
297+
<div class="block p-4 w-full flex justify-center max-h-30">
298+
<img src={sponsor.imgSrc} alt={sponsor.name} />
293299
</div>
294300
</a>
295301
{/each}

0 commit comments

Comments
 (0)