- Change event date from 18 to 24 april across all pages, hero, meta and constants - Add venue (Lange Winkelstraat 5, 2000 Antwerpen) to contact page, Q&A, and transactional emails - Add LOCATION constant to packages/api/src/constants.ts - Add Ichtus Antwerpen (ichtusantwerpen.com) as co-sponsor in footer and contact page - Add location info card to confirmation, update, payment reminder and payment confirmation emails
11 lines
547 B
TypeScript
11 lines
547 B
TypeScript
// ---------------------------------------------------------------------------
|
|
// Single source-of-truth for event details used across the API
|
|
// ---------------------------------------------------------------------------
|
|
|
|
export const EVENT = "Open Mic Night — vrijdag 24 april 2026";
|
|
export const LOCATION = "Lange Winkelstraat 5, 2000 Antwerpen";
|
|
export const OPENS = "maandag 16 maart 2026 om 19:00";
|
|
|
|
// Registration opens — used for reminder scheduling windows
|
|
export const REGISTRATION_OPENS_AT = new Date("2026-03-16T19:00:00+01:00");
|