Update event pricing: €100 early bird, €200 regular, €250 late

- Early bird €100 until March 31
- Regular €200 until May 31
- Late €250 after

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-03-19 15:18:01 -07:00
parent 43cee35f46
commit 759b7295bc
1 changed files with 3 additions and 3 deletions

View File

@ -26,9 +26,9 @@ interface PricingTier {
}
export const PRICING_TIERS: PricingTier[] = [
{ label: "Early bird", price: 80, cutoff: "2026-04-01" },
{ label: "Regular", price: 120, cutoff: "2026-07-01" },
{ label: "Late", price: 150, cutoff: "2099-12-31" },
{ label: "Early bird", price: 100, cutoff: "2026-04-01" },
{ label: "Regular", price: 200, cutoff: "2026-06-01" },
{ label: "Late", price: 250, cutoff: "2099-12-31" },
]
/** Returns the currently active pricing tier based on today's date */