Skip to content

Commit dc89ac5

Browse files
authored
bring back custom startup (#1550)
1 parent 38162d6 commit dc89ac5

1 file changed

Lines changed: 5 additions & 14 deletions

File tree

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

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ const tiers: SponsorTierProps[] = [
119119
},
120120
{
121121
title: "Startup",
122-
price: 3_000,
123-
slotsLeft: "5",
122+
price: "Special Rate",
123+
slotsLeft: "enquire for eligibility",
124124
features: [
125125
"<strong>Exhibition Space for 3 days</strong>",
126126
"<strong>2 conference tickets (€1000 value)</strong>",
@@ -245,7 +245,7 @@ const formatPrice = (price: number | string) => {
245245
}
246246
</div>
247247

248-
<!--
248+
249249
<div class="text-center mb-8 mt-16">
250250
<h2 class="text-3xl font-bold">Startups</h2>
251251
<p class="text-xl mt-2 mb-12">
@@ -271,16 +271,7 @@ const formatPrice = (price: number | string) => {
271271
<Headline as="h3" title={tier.title} />
272272
<div class="font-bold text-3xl">{formatPrice(tier.price)}</div>
273273
<div class="text-xl">
274-
{tier.slotsLeft === "Exclusive" ? (
275-
<>Exclusive</>
276-
) : tier.slotsLeft ? (
277-
<>
278-
<span>{tier.slotsLeft}</span>
279-
{tier.slotsLeft == 1 ? "slot" : "slots"} available
280-
</>
281-
) : (
282-
<>Fully booked</>
283-
)}
274+
{tier.slotsLeft}
284275
</div>
285276
</div>
286277

@@ -300,7 +291,7 @@ const formatPrice = (price: number | string) => {
300291
))
301292
}
302293
</div>
303-
-->
294+
304295

305296
<div class="text-center mb-8 mt-16">
306297
<h2 class="text-3xl font-bold">Major Supporters</h2>

0 commit comments

Comments
 (0)