Skip to content

Commit 23a817d

Browse files
committed
Show 'Exclusive' for Keystone spot
1 parent 5a58337 commit 23a817d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ interface SponsorTierProps {
1919
const tiers: SponsorTierProps[] = [
2020
{
2121
title: "Keystone",
22-
slotsLeft: 1,
22+
slotsLeft: "Exclusive",
2323
price: "Custom Pricing",
2424
features: [
2525
`<span style="font-size: 1.2rem; margin-top: 5;">Everything in the Diamond tier, plus <strong>white glove bespoke customisation tailored specifically to your needs</strong>.</span><br><br>`,
@@ -242,7 +242,9 @@ const formatPrice = (price: number | string) => {
242242
</Title>
243243
<div class="font-bold text-3xl">{formatPrice(tier.price)}</div>
244244
<div class="text-xl">
245-
{tier.slotsLeft ? (
245+
{tier.slotsLeft === "Exclusive" ? (
246+
<>Exclusive</>
247+
) : tier.slotsLeft ? (
246248
<>
247249
<span>{tier.slotsLeft}</span> slot{tier.slotsLeft == 1 ? "" : "s"}{" "}
248250
remaining

0 commit comments

Comments
 (0)