sponsors: add 37signals at diamond + style fixes

This commit is contained in:
Vaxry 2025-09-12 10:25:45 +01:00
parent 04ebcd1a6e
commit 91ee773d39
Signed by: vaxry
GPG key ID: 665806380871D640
3 changed files with 5 additions and 7 deletions

View file

@ -1,6 +1,5 @@
{
"diamond": [],
"platinum": [
"diamond": [
{
"name": "37signals",
"image": "/imgs/sponsors/37signals.svg",
@ -8,9 +7,8 @@
"link": "https://37signals.com/"
}
],
"platinum": [],
"gold": [],
"silver": [],
"bronze": []
}

View file

@ -9,7 +9,7 @@
export let sloganClass = ''
</script>
<Clickable href={sponsor.link} class="flex flex-col items-center gap-4">
<Clickable href={sponsor.link} class="flex flex-col items-center gap-4">
{#if showImage && sponsor.image}
<img
title={sponsor.name}
@ -23,7 +23,7 @@
{:else}
<div
class={cn(
'size-full px-1 py-0.5 text-sm font-medium text-slate-100',
'size-full px-1 py-0.5 text-sm font-medium text-slate-100',
sponsor.link && 'hover:text-cyan-200',
showImage && 'text-lg'
)}

View file

@ -40,7 +40,7 @@
</h2>
<div class="flex justify-center gap-14 md:gap-16">
{#each sponsors.diamond as sponsor}
<Sponsor {sponsor} showImage showSlogan class="h-16 w-40 md:h-24 md:w-64" />
<Sponsor {sponsor} showImage showSlogan class="h-18 w-50 md:h-30 md:w-72" />
{/each}
</div>
</div>