diff --git a/src/lib/util/promos/October2024.svelte b/src/lib/util/promos/October2024.svelte
new file mode 100644
index 00000000..cca33f8a
--- /dev/null
+++ b/src/lib/util/promos/October2024.svelte
@@ -0,0 +1,55 @@
+
+
+
diff --git a/src/lib/util/promos/promo.ts b/src/lib/util/promos/promo.ts
index 98ed7fec..d58536c4 100644
--- a/src/lib/util/promos/promo.ts
+++ b/src/lib/util/promos/promo.ts
@@ -1,6 +1,7 @@
import { writable, type Writable, get } from 'svelte/store';
import { persist, localStorage } from '../persist';
import August2024 from './August2024.svelte';
+import October2024 from './October2024.svelte';
import { env } from '$lib/util/env';
interface Promotion {
@@ -14,8 +15,14 @@ const promotions: Promotion[] = [
{
id: 'promo-2024',
startDate: new Date('2024-08-01'),
- endDate: new Date('2024-12-31'),
+ endDate: new Date('2024-10-20'),
component: August2024
+ },
+ {
+ id: 'promo-october-2024',
+ startDate: new Date('2024-10-21'),
+ endDate: new Date('2024-12-31'),
+ component: October2024
}
];