Skip to content

Commit 8903a66

Browse files
committed
update available partner spots
1 parent 7e96283 commit 8903a66

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/app/sponsor/page.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ function PartnerPlans() {
513513
{
514514
name: "Partner",
515515
price: "$5,000",
516-
url: "https://buy.polar.sh/polar_cl_Ae2EFQATomRTUPq3DVTqzjOCAEsI7m7GNrmoh1n6ZRk",
516+
url: "mailto:[email protected]?subject=Tailwind%20CSS%20Partner%20waitlist",
517517
description: "For companies who want increased exposure and easy access to the Tailwind team.",
518518
features: [
519519
{
@@ -542,7 +542,7 @@ function PartnerPlans() {
542542
description: "sleep easy knowing that you’re supporting the development of Tailwind CSS.",
543543
},
544544
],
545-
remaining: 1,
545+
remaining: 0,
546546
},
547547
];
548548

@@ -556,7 +556,7 @@ function PartnerPlans() {
556556
<div className="flex h-full flex-col gap-y-6 rounded-2xl bg-white p-6 sm:rounded-4xl sm:p-10 xl:p-8 2xl:p-10 dark:bg-gray-950/80 dark:outline dark:outline-white/10">
557557
<div className="flex items-center justify-between gap-4">
558558
<Eyebrow as="h3">{plan.name}</Eyebrow>
559-
{plan.remaining && (
559+
{plan.remaining !== null && (
560560
<p
561561
className={clsx(
562562
"rounded-full px-2 py-0.5 text-[0.6875rem]/4 font-semibold",
@@ -579,7 +579,7 @@ function PartnerPlans() {
579579
</div>
580580

581581
<DarkButtonLink className="max-sm:hidden xl:hidden" href={plan.url}>
582-
Become {plan.name.toLowerCase().match(/^[aeiou]/i) ? "an" : "a"} {plan.name.toLowerCase()}
582+
{plan.name === "Partner" ? "Join waitlist" : `Become ${plan.name.toLowerCase().match(/^[aeiou]/i) ? "an" : "a"} ${plan.name.toLowerCase()}`}
583583
</DarkButtonLink>
584584
</div>
585585
<p className="max-w-2xl text-sm/7 text-gray-600 dark:text-gray-400">{plan.description}</p>
@@ -601,7 +601,7 @@ function PartnerPlans() {
601601
</ul>
602602
</div>
603603
<DarkButtonLink className="mt-auto sm:max-xl:hidden" href={plan.url}>
604-
Become {plan.name.toLowerCase().match(/^[aeiou]/i) ? "an" : "a"} {plan.name.toLowerCase()}
604+
{plan.name === "Partner" ? "Join waitlist" : `Become ${plan.name.toLowerCase().match(/^[aeiou]/i) ? "an" : "a"} ${plan.name.toLowerCase()}`}
605605
</DarkButtonLink>
606606
</div>
607607
</div>

0 commit comments

Comments
 (0)