-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathEventsDatabase.tsx
More file actions
53 lines (51 loc) · 2.01 KB
/
EventsDatabase.tsx
File metadata and controls
53 lines (51 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import { EventObject } from '../tools/CustomTypes'
const semesterEnd = '04/29/26'
const EVENT_INFO: EventObject[] = [
// {
// title: 'Weekly SolidWorks Workshop',
// description: `The goal of these classes is to equip you with the skills to model and design on a professional
// level, as well as create a common ground for all engineers to work together more efficiently and effectively`,
// date: new Date('2025-03-10T17:30:00'),
// location: 'The ideas hub (second floor of the engineering building)',
// weekly: true,
// endDate: new Date(semesterEnd),
// duration: 90 // 1 hour 30 minutes
// },
{
title: 'General Body Meeting',
description: 'First GBM of the semester, talking about the goals for the year and updates on the competition.',
date: new Date('2026-02-09T18:30:00'),
location: 'Fishbowl (College of Engineering EN 102)'
},
{
title: 'Weekly Programming Meeting',
description: `The weekly meeting for the programming sub-team. Learn how to program the robot in ROS (Robot Operating System)
and more!`,
date: new Date('2026-02-09T17:30:00'),
location: 'The ideas hub (second floor of the engineering building)',
weekly: true,
endDate: new Date(semesterEnd),
duration: 60 // 1 hour
},
{
title: 'Weekly Electrical Meeting',
description: `The weekly meeting for the electrical sub-team. Talk about improved batteries, wiring, custom motor controllers
and more!`,
date: new Date('2026-02-09T17:00:00'),
location: 'The ideas hub (second floor of the engineering building)',
weekly: true,
endDate: new Date(semesterEnd),
duration: 60 // 1 hour
},
{
title: 'Weekly Mechanical Meeting',
description: `The weekly meeting for the mechanical sub-team. Learn about the design aspects of robot and 3D model parts.
As well as machining and assembling the robot!`,
date: new Date('2026-02-04T18:00:00'),
location: 'The ideas hub (second floor of the engineering building)',
weekly: true,
endDate: new Date(semesterEnd),
duration: 60 // 1 hour
}
]
export default EVENT_INFO