Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions src/components/sponsor-tiers/sponsor-tiers.astro
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const tiers: SponsorTierProps[] = [
},
{
title: "Diamond",
slotsLeft: "2",
slotsLeft: "Talk to us",
price: 30_000,
features: [
"<strong>Extra large</strong> booth in exhibit hall (incl. TV & stand)",
Expand Down Expand Up @@ -60,7 +60,7 @@ const tiers: SponsorTierProps[] = [
},
{
title: "Platinum",
slotsLeft: "4",
slotsLeft: 0,
price: 18_000,
features: [
"<strong>Large</strong> booth in exhibit hall <strong>(incl. TV & stand)</strong>",
Expand Down Expand Up @@ -88,7 +88,7 @@ const tiers: SponsorTierProps[] = [
{
title: "Gold",
price: 9_500,
slotsLeft: "10",
slotsLeft: 0,
features: [
"Booth in exhibit hall",
"<strong>3</strong> conference tickets (€1500 value)",
Expand All @@ -110,7 +110,7 @@ const tiers: SponsorTierProps[] = [
{
title: "Silver",
price: 7_000,
slotsLeft: "10",
slotsLeft: 0,
features: [
"Small booth in exhibit hall",
"2 conference tickets (€1000 value)",
Expand Down Expand Up @@ -335,6 +335,8 @@ const formatPrice = (price: number | string) => {
<div class="text-xl">
{tier.slotsLeft === "Exclusive" ? (
<>Exclusive</>
) : tier.slotsLeft === "Talk to us" ? (
<>Talk to us</>
) : tier.slotsLeft ? (
<>
<span>{tier.slotsLeft}</span>
Expand Down
5 changes: 5 additions & 0 deletions src/content/pages/sponsorship/sponsor.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ supporting the Python community is accessible for organisations of all sizes.
<Button class="m-2" url="https://drive.google.com/file/d/1AGvH0w3fMLRvaNDa5VPCs78rtc4MnL6h/view?usp=sharing">Full Sponsorship Opportunities (PDF)</Button>
<Button class="m-2" url="https://forms.gle/T8da5sQbKn6BFsxH7">Sign up now!</Button>

<Note>
<span className="block text-xl font-semibold mb-2">**Platinum, Gold and Silver packages are now fully booked**.</span>
<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>
</Note>


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

Expand Down