Skip to content

Commit 68da754

Browse files
committed
feat: sponsorship
1 parent 95e0629 commit 68da754

File tree

3 files changed

+54
-3
lines changed

3 files changed

+54
-3
lines changed

src/packlets/assets/odds.svg

Lines changed: 1 addition & 0 deletions
Loading

src/packlets/assets/tdpk.svg

Lines changed: 18 additions & 0 deletions
Loading

src/packlets/front/sponsors.astro

Lines changed: 35 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,40 @@
11
---
2-
import TBA from './tba.astro'
2+
import { Image } from 'astro:assets'
3+
4+
import odds from '$assets/odds.svg'
5+
import tdpk from '$assets/tdpk.svg'
36
---
47

58
<section class="bg-เหล็กไหล py-12 text-white">
6-
<h1 class="pb-12 text-center text-4xl font-bold">Sponsors</h1>
7-
<TBA />
9+
<div class="pb-12 text-center">
10+
<h1 class="pb-6 text-4xl font-bold">Sponsors</h1>
11+
<p>
12+
JavaScript Bangkok would like to tank our sponsors for their kind
13+
contributions.
14+
</p>
15+
<p>
16+
If you're interested in becoming a sponsor, email us at
17+
<span class="text-red-500">[email protected]</span>
18+
</p>
19+
</div>
20+
<ul class="mx-auto max-w-4xl space-y-6 px-4">
21+
<li class="rounded-xl bg-ขาวผ่อง px-8 py-6 text-เหล็กไหล">
22+
<h2 class="pb-4 text-2xl font-bold">Platinum</h2>
23+
<div class="flex flex-wrap justify-center gap-6">
24+
<Image src={odds} alt="ODDS" />
25+
</div>
26+
</li>
27+
<li class="rounded-xl bg-ขาวผ่อง px-8 py-6 text-เหล็กไหล">
28+
<h2 class="pb-4 text-2xl font-bold">Gold</h2>
29+
<div class="flex flex-wrap justify-center gap-6">
30+
<Image src={tdpk} alt="True Digital Park" />
31+
</div>
32+
</li>
33+
<li class="rounded-xl bg-ขาวผ่อง px-8 py-6 text-เหล็กไหล">
34+
<h2 class="pb-4 text-2xl font-bold">Silver</h2>
35+
<div class="flex flex-wrap justify-center gap-6">
36+
<p class="px-4 text-center">Sponsorship slot available!</p>
37+
</div>
38+
</li>
39+
</ul>
840
</section>

0 commit comments

Comments
 (0)