Skip to content

Commit fb29a7f

Browse files
authored
EP2025 close Silver+ sponsor packages (#1333)
1 parent f777ea2 commit fb29a7f

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const tiers: SponsorTierProps[] = [
2929
},
3030
{
3131
title: "Diamond",
32-
slotsLeft: "2",
32+
slotsLeft: "Talk to us",
3333
price: 30_000,
3434
features: [
3535
"<strong>Extra large</strong> booth in exhibit hall (incl. TV & stand)",
@@ -60,7 +60,7 @@ const tiers: SponsorTierProps[] = [
6060
},
6161
{
6262
title: "Platinum",
63-
slotsLeft: "4",
63+
slotsLeft: 0,
6464
price: 18_000,
6565
features: [
6666
"<strong>Large</strong> booth in exhibit hall <strong>(incl. TV & stand)</strong>",
@@ -88,7 +88,7 @@ const tiers: SponsorTierProps[] = [
8888
{
8989
title: "Gold",
9090
price: 9_500,
91-
slotsLeft: "10",
91+
slotsLeft: 0,
9292
features: [
9393
"Booth in exhibit hall",
9494
"<strong>3</strong> conference tickets (€1500 value)",
@@ -110,7 +110,7 @@ const tiers: SponsorTierProps[] = [
110110
{
111111
title: "Silver",
112112
price: 7_000,
113-
slotsLeft: "10",
113+
slotsLeft: 0,
114114
features: [
115115
"Small booth in exhibit hall",
116116
"2 conference tickets (€1000 value)",
@@ -335,6 +335,8 @@ const formatPrice = (price: number | string) => {
335335
<div class="text-xl">
336336
{tier.slotsLeft === "Exclusive" ? (
337337
<>Exclusive</>
338+
) : tier.slotsLeft === "Talk to us" ? (
339+
<>Talk to us</>
338340
) : tier.slotsLeft ? (
339341
<>
340342
<span>{tier.slotsLeft}</span>

src/content/pages/sponsorship/sponsor.mdx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ supporting the Python community is accessible for organisations of all sizes.
5151
<Button class="m-2" url="https://drive.google.com/file/d/1AGvH0w3fMLRvaNDa5VPCs78rtc4MnL6h/view?usp=sharing">Full Sponsorship Opportunities (PDF)</Button>
5252
<Button class="m-2" url="https://forms.gle/T8da5sQbKn6BFsxH7">Sign up now!</Button>
5353

54+
<Note>
55+
<span className="block text-xl font-semibold mb-2">**Platinum, Gold and Silver packages are now fully booked**.</span>
56+
<span>If you're interested in sponsoring, please fill out the signup form above or contact us at [email protected]. We’d love to explore options with you!</span>
57+
</Note>
58+
5459

5560
<SponsorTiers signupLink="https://forms.gle/T8da5sQbKn6BFsxH7" />
5661

0 commit comments

Comments
 (0)