From 759b7295bc59cefef0101eb423ff2a41f503b7ea Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Thu, 19 Mar 2026 15:18:01 -0700 Subject: [PATCH] =?UTF-8?q?Update=20event=20pricing:=20=E2=82=AC100=20earl?= =?UTF-8?q?y=20bird,=20=E2=82=AC200=20regular,=20=E2=82=AC250=20late?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Early bird €100 until March 31 - Regular €200 until May 31 - Late €250 after Co-Authored-By: Claude Opus 4.6 --- lib/event.config.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/event.config.ts b/lib/event.config.ts index 93e5844..69e2600 100644 --- a/lib/event.config.ts +++ b/lib/event.config.ts @@ -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 */