Skip to content

Commit 37bd2d0

Browse files
committed
Changed Weekly meetings to TBD
1 parent 6c2c027 commit 37bd2d0

File tree

1 file changed

+49
-22
lines changed

1 file changed

+49
-22
lines changed

src/data/EventsDatabase.tsx

Lines changed: 49 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,71 @@
11
import { EventObject } from '../tools/CustomTypes'
22

3-
// const semesterEnd = '12/11/23'
3+
const semesterEnd = '5/30/25'
44

55
const EVENT_INFO: EventObject[] = [
6-
{
7-
title: 'General Body Meeting',
8-
description: `Learn more about the club and what we do! If you have any interest at all,
9-
we highly recommend you joining us!`,
10-
date: new Date('9/4/2024'),
11-
time: '5:00pm',
12-
location: 'The Fish Bowl (first floor pf the engineering building)'
13-
},
6+
// {
7+
// title: 'General Body Meeting',
8+
// description: `Learn more about the club and what we do! If you have any interest at all,
9+
// we highly recommend you joining us!`,
10+
// date: new Date('1/11/2025'),
11+
// time: '5:00pm',
12+
// location: 'The Fish Bowl (first floor pf the engineering building)'
13+
// },
1414
{
1515
title: 'Weekly Programming Meeting',
16-
description: 'The weekly meeting for the programming sub-team. Take a look at the code for the robot and ',
17-
date: new Date('9/11/2024'),
18-
time: '5:00pm',
16+
description: 'The weekly meeting for the programming sub-team. Take a look at the code for the robot',
17+
date: new Date('TBD'),
18+
time: 'TBD',
1919
location: 'The ideas hub (second floor of the engineering building)',
20-
weekly: true
21-
// endDate: new Date(semesterEnd)
20+
weekly: true,
21+
endDate: new Date(semesterEnd)
2222
},
2323
{
2424
title: 'Weekly Electrical Meeting',
2525
description: 'The weekly meeting for the electrical sub-team. Talk about improved batteries, wiring, and more!',
26-
date: new Date('9/9/2024'),
27-
time: '6:00',
26+
date: new Date('TBD'),
27+
time: 'TBD',
2828
location: 'The ideas hub (second floor of the engineering building)',
29-
weekly: true
30-
// endDate: new Date(semesterEnd)
29+
weekly: true,
30+
endDate: new Date(semesterEnd)
3131
},
3232
{
3333
title: 'Weekly Mechanical Meeting',
3434
description: 'The weekly meeting for the mechanical sub-team. Learn about the design aspects of robot and 3D model parts.',
35-
date: new Date('9/11/2024'),
36-
time: '4:00pm',
35+
date: new Date('TBD'),
36+
time: 'TBD',
3737
location: 'The ideas hub (second floor of the engineering building)',
38-
weekly: true
39-
// endDate: new Date(semesterEnd)
38+
weekly: true,
39+
endDate: new Date(semesterEnd)
4040
}
4141
// {
42+
// title: 'Weekly Programming Meeting',
43+
// description: 'The weekly meeting for the programming sub-team. Take a look at the code for the robot',
44+
// date: new Date('1/1/2025'),
45+
// time: '5:00pm',
46+
// location: 'The ideas hub (second floor of the engineering building)',
47+
// weekly: true,
48+
// endDate: new Date(semesterEnd)
49+
// },
50+
// {
51+
// title: 'Weekly Electrical Meeting',
52+
// description: 'The weekly meeting for the electrical sub-team. Talk about improved batteries, wiring, and more!',
53+
// date: new Date('1/2/2025'),
54+
// time: '6:00',
55+
// location: 'The ideas hub (second floor of the engineering building)',
56+
// weekly: true,
57+
// endDate: new Date(semesterEnd)
58+
// },
59+
// {
60+
// title: 'Weekly Mechanical Meeting',
61+
// description: 'The weekly meeting for the mechanical sub-team. Learn about the design aspects of robot and 3D model parts.',
62+
// date: new Date('1/2/2025'),
63+
// time: '4:00pm',
64+
// location: 'The ideas hub (second floor of the engineering building)',
65+
// weekly: true,
66+
// endDate: new Date(semesterEnd)
67+
// }
68+
// {
4269
// title: 'Engineering Week Showcase',
4370
// description: 'Meet us to see the robot in action and learn about the club!',
4471
// date: new Date(''),

0 commit comments

Comments
 (0)