diff --git a/src/lib/participants/registration.ts b/src/lib/participants/registration.ts index 916b62f2a..75e91ddc4 100644 --- a/src/lib/participants/registration.ts +++ b/src/lib/participants/registration.ts @@ -1,6 +1,6 @@ -export const registrationOpensAt = +new Date('2023-05-01 00:00:00Z'); -export const eventStartsAt = +new Date('2023-06-30 09:30:00Z'); -export const registrationClosessAt = +new Date('2023-06-26 17:00:00Z'); +export const registrationOpensAt = +new Date('2024-05-01 00:00:00Z'); +export const eventStartsAt = +new Date('2024-06-30 09:30:00Z'); +export const registrationClosessAt = +new Date('2023-04-26 17:00:00Z'); export const isRegistrationOpen = () => { const now = +new Date(); return registrationOpensAt <= now && now <= registrationClosessAt; diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index e3a59bba3..a6d46f465 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -84,7 +84,7 @@

Summer 2024.

{#if $registrationState === 'not-yet'} -

Registration will open about a month before.

+

Registration will open about a month before the event starts.

{:else if $registrationState === 'closed'}

Registration is closed, we're full!

{:else}