Merge branch 'master' into develop

* master:
  update end date
  update-promo
This commit is contained in:
Sidharth Vinod
2025-02-04 20:57:19 +05:30
2 changed files with 6 additions and 6 deletions
+6 -6
View File
@@ -1,21 +1,21 @@
import { writable, type Writable, get } from 'svelte/store';
import { persist, localStorage } from '../persist';
import October2024 from './October2024.svelte';
import January2025 from './January2025.svelte';
import { env } from '$lib/util/env';
interface Promotion {
id: string;
startDate: Date;
endDate: Date;
component: ConstructorOfATypedSvelteComponent;
component: typeof January2025;
}
const promotions: Promotion[] = [
{
id: 'promo-october-2024',
startDate: new Date('2024-10-22'),
endDate: new Date('2024-12-31'),
component: October2024
id: 'promo-january-2025',
startDate: new Date('2025-01-01'),
endDate: new Date('2028-12-31'),
component: January2025
}
];