Skip to content

Commit 38a7139

Browse files
committed
NEXT_MEETUP_SERIES
1 parent 799a648 commit 38a7139

File tree

1 file changed

+33
-6
lines changed

1 file changed

+33
-6
lines changed

src/constants.ts

Lines changed: 33 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,39 @@ export interface MeetupDetails {
1111
description: string
1212
}
1313

14-
export const NEXT_MEETUP: MeetupDetails | undefined = {
15-
title: 'Awards Night 🍾',
16-
date: new Date('2024-12-05T16:00:00'),
17-
location: '7GS, F.21',
18-
description: 'Join the audience or nominate your project!',
19-
}
14+
const NEXT_MEETUPS_SERIES: MeetupDetails[] = [{
15+
title: 'Project Share',
16+
date: new Date('2025-01-16T17:00:00'),
17+
location: 'AT_2.07',
18+
description: 'Share your projects and get feedback from the community!',
19+
}, {
20+
title: 'Project Share',
21+
date: new Date('2025-01-30T17:00:00'),
22+
location: 'AT_2.07',
23+
description: 'Share your projects and get feedback from the community!',
24+
}, {
25+
title: 'Project Share',
26+
date: new Date('2025-02-13T17:00:00'),
27+
location: 'AT_2.07',
28+
description: 'Share your projects and get feedback from the community!',
29+
}, {
30+
title: 'Project Share',
31+
date: new Date('2025-02-27T17:00:00'),
32+
location: 'AT_2.07',
33+
description: 'Share your projects and get feedback from the community!',
34+
}, {
35+
title: 'Project Share',
36+
date: new Date('2025-03-13T17:00:00'),
37+
location: 'AT_2.07',
38+
description: 'Share your projects and get feedback from the community!',
39+
}, {
40+
title: 'Project Share',
41+
date: new Date('2025-03-27T17:00:00'),
42+
location: 'AT_2.07',
43+
description: 'Share your projects and get feedback from the community!',
44+
}]
45+
46+
export const NEXT_MEETUP: MeetupDetails | undefined = NEXT_MEETUPS_SERIES.find((meetup) => meetup.date >= new Date())
2047

2148
export const DISCORD_INVITE_LINK = 'https://discord.gg/wNGukFdBgp'
2249

0 commit comments

Comments
 (0)