fix: change early bird cutoff to March 31

Sync with CCA — registrations on March 31 now see Regular tier.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-03-23 13:03:48 -07:00
parent 2b2b7eed67
commit de51975cb3
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ interface PricingTier {
} }
export const PRICING_TIERS: PricingTier[] = [ export const PRICING_TIERS: PricingTier[] = [
{ label: "Early bird", price: 100, cutoff: "2026-04-01" }, { label: "Early bird", price: 100, cutoff: "2026-03-31" },
{ label: "Regular", price: 200, cutoff: "2026-06-01" }, { label: "Regular", price: 200, cutoff: "2026-06-01" },
{ label: "Late", price: 250, cutoff: "2099-12-31" }, { label: "Late", price: 250, cutoff: "2099-12-31" },
] ]