Skip to content

Commit f9d6dec

Browse files
committed
Add signup buttons all across packages
1 parent 58c1291 commit f9d6dec

File tree

2 files changed

+31
-8
lines changed

2 files changed

+31
-8
lines changed

src/components/sponsor-tiers/sponsor-tiers.astro

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
import { Title } from "../typography/title";
33
import Ribbon from "./ribbon.astro";
4+
import ButtonLink from "../button-link/button-link.astro"
45
56
interface SponsorTierProps {
67
title: string;
@@ -169,7 +170,7 @@ const formatPrice = (price: number | string) => {
169170
return order[a.title] - order[b.title];
170171
})
171172
.map((tier) => (
172-
<div class="bg-white text-black rounded-2xl p-6 relative not-prose z-0">
173+
<div class="bg-white text-black rounded-2xl p-6 pb-20 relative not-prose z-0">
173174
<div class="h-[160px]">
174175
<Ribbon
175176
className={`absolute -right-6 -top-8 ${getRibbonClass(tier.title)}`}
@@ -198,6 +199,10 @@ const formatPrice = (price: number | string) => {
198199

199200
))}
200201
</ul>
202+
<div class="absolute bottom-4 right-4">
203+
<ButtonLink url="undefined">Sign Up Now!</ButtonLink>
204+
</div>
205+
201206
</div>
202207
))}
203208
</div>
@@ -214,7 +219,7 @@ const formatPrice = (price: number | string) => {
214219
})
215220

216221
.map((tier) => (
217-
<div class="bg-white text-black rounded-2xl p-6 relative not-prose z-0">
222+
<div class="bg-white text-black rounded-2xl p-6 pb-20 relative not-prose z-0">
218223
<div class="h-[160px]">
219224
<Ribbon
220225
className={`absolute -right-6 -top-8 ${getRibbonClass(tier.title)}`}
@@ -242,6 +247,9 @@ const formatPrice = (price: number | string) => {
242247
<li set:html={`✔️ ${feature}`}></li>
243248
))}
244249
</ul>
250+
<div class="absolute bottom-4 right-4">
251+
<ButtonLink url="undefined">Sign Up Now!</ButtonLink>
252+
</div>
245253
</div>
246254
))}
247255
</div>
@@ -257,7 +265,7 @@ const formatPrice = (price: number | string) => {
257265
return order[a.title] - order[b.title];
258266
})
259267
.map((tier) => (
260-
<div class="bg-white text-black rounded-2xl p-6 relative not-prose z-0">
268+
<div class="bg-white text-black rounded-2xl p-6 pb-20 relative not-prose z-0">
261269
<div class="h-[160px]">
262270
<Ribbon
263271
className={`absolute -right-6 -top-8 ${getRibbonClass(tier.title)}`}
@@ -285,6 +293,9 @@ const formatPrice = (price: number | string) => {
285293
<li set:html={`✔️ ${feature}`}></li>
286294
))}
287295
</ul>
296+
<div class="absolute bottom-4 right-4">
297+
<ButtonLink url="undefined">Sign Up Now!</ButtonLink>
298+
</div>
288299
</div>
289300
))}
290301
</div>

src/content/pages/sponsorship/sponsor.mdx

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,25 @@ designed to amplify your sponsorship impact and visibility.
6262
They are available for sponsors at **Silver Package level and above**.
6363
Here are some popular examples to give you a taste:
6464

65-
- Sponsored Talk on a Conference Day: €undefined
66-
- Sponsored Tutorial on a Tutorial Day: €undefined
67-
- Participation in the recruiting session: €undefined
68-
- Lanyard Sponsorship: €undefined
69-
- PyLadies Lunch Sponsorship: €undefined
65+
- **Technical talk slot (30 min)**: €5000
66+
- **Tutorial slot (3h)**: €5000
67+
- **Poster slot**: €3000
68+
- **Lanyards Sponsor**: €4000
69+
- **Childcare Sponsor**: €4000
70+
- **Wifi Sponsor**: 4000
71+
- **Hackathon Sponsor**: TBD
72+
- **Talk Room Sponsor**: TBD
73+
- **Talk Room Sponsor 1 day only**: TBD
74+
- **Open Space sponsor**: TBD
75+
- **Quiet Room sponsorship**: TBD
76+
- **Finaid sponsor**: TBD
77+
- **Recruiting Session / Talent Track**: TBD
78+
- **Social Event Sponsor**: TBD
79+
- **Speaker Dinner Sponsor**: TBD
80+
- **Media package addon**: €5000
7081
- And many more exciting options!
7182

83+
7284
Please note: availability of each add-on is limited, and some are exclusive to certain sponsorship levels.
7385
See the full list in the [PDF](undefined) for complete details and eligibility.
7486

0 commit comments

Comments
 (0)