Skip to content

Commit dbe9b8d

Browse files
committed
feat: add earnin
1 parent 9d234d8 commit dbe9b8d

File tree

2 files changed

+30
-5
lines changed

2 files changed

+30
-5
lines changed

src/packlets/assets/earnin.svg

Lines changed: 17 additions & 0 deletions
Loading

src/packlets/new-front/sponsors.astro

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import microsoft from '$assets/microsoft.png'
77
import eventpop from '$assets/eventpop.png'
88
import jetbrains from '$assets/jetbrains.svg'
99
import creatorsgarten from '$assets/creatorsgarten.svg'
10+
import earnin from '$assets/earnin.svg'
1011
---
1112

1213
<section class="py-12 px-8 bg-white">
@@ -27,32 +28,39 @@ import creatorsgarten from '$assets/creatorsgarten.svg'
2728
<div class="space-y-12 pb-8">
2829
<div>
2930
<h1 class="text-center font-bold text-3xl pb-6">Platinum</h1>
30-
<div class="flex flex-wrap justify-center gap-x-8 gap-y-6">
31+
<div class="sponsor-container">
3132
<Image src={odds} alt="ODDS" class="h-28 w-auto" />
3233
</div>
3334
</div>
3435

3536
<div>
3637
<h1 class="text-center font-bold text-3xl pb-6">Gold</h1>
37-
<div class="flex flex-wrap justify-center gap-x-8 gap-y-6">
38+
<div class="sponsor-container">
3839
<Image src={tdpk} alt="True Digital Park" class="h-16 w-auto" />
3940
</div>
4041
</div>
4142

4243
<div>
4344
<h1 class="text-center font-bold text-3xl pb-6">Silver</h1>
44-
<div class="flex flex-wrap justify-center gap-x-8 gap-y-6">
45+
<div class="sponsor-container">
4546
<Image src={microsoft} alt="Microsoft" class="h-8 w-auto" />
46-
<Image src={eventpop} alt="Microsoft" class="h-8 w-auto" />
47+
<Image src={eventpop} alt="Eventpop" class="h-8 w-auto" />
48+
<Image src={earnin} alt="EarnIn" class="h-10 w-auto" />
4749
</div>
4850
</div>
4951

5052
<div>
5153
<h1 class="text-center font-bold text-3xl pb-6">Communities</h1>
52-
<div class="flex flex-wrap justify-center gap-x-8 gap-y-6">
54+
<div class="sponsor-container">
5355
<Image src={creatorsgarten} alt="Creatorsgarten" class="h-9 w-auto" />
5456
<Image src={jetbrains} alt="Creatorsgarten" class="h-8 w-auto" />
5557
</div>
5658
</div>
5759
</div>
5860
</section>
61+
62+
<style>
63+
.sponsor-container {
64+
@apply flex flex-wrap justify-center items-center gap-x-8 gap-y-6
65+
}
66+
</style>

0 commit comments

Comments
 (0)