11import { EventObject } from '../tools/CustomTypes'
22
33const semesterEnd = '5/31/25'
4- const descriptionForSDW = `The goal of these classes is to equip you with the skills to model and design on a professional
5- level, as well as create a common ground for all engineers to work together more efficiently and effectively`
64const EVENT_INFO : EventObject [ ] = [
75 {
86 title : 'Weekly Solidworks Workshop' ,
9- description : descriptionForSDW ,
7+ description : `The goal of these classes is to equip you with the skills to model and design on a professional
8+ level, as well as create a common ground for all engineers to work together more efficiently and effectively` ,
109 date : new Date ( '2025-02-17T17:30:00' ) ,
1110 location : 'The ideas hub (second floor of the engineering building)' ,
1211 weekly : true ,
@@ -22,68 +21,27 @@ const EVENT_INFO: EventObject[] = [
2221 {
2322 title : 'Weekly Programming Meeting' ,
2423 description : 'The weekly meeting for the programming sub-team. Take a look at the code for the robot' ,
25- date : new Date ( '2025-02-19T17 :00:00' ) ,
24+ date : new Date ( '2025-02-12T17 :00:00' ) ,
2625 location : 'The ideas hub (second floor of the engineering building)' ,
2726 weekly : true ,
2827 endDate : new Date ( semesterEnd )
2928 } ,
3029 {
3130 title : 'Weekly Electrical Meeting' ,
3231 description : 'The weekly meeting for the electrical sub-team. Talk about improved batteries, wiring, and more!' ,
33- date : new Date ( '2025-02-19T18 :00:00' ) ,
32+ date : new Date ( '2025-02-12T18 :00:00' ) ,
3433 location : 'The ideas hub (second floor of the engineering building)' ,
3534 weekly : true ,
3635 endDate : new Date ( semesterEnd )
3736 } ,
3837 {
3938 title : 'Weekly Mechanical Meeting' ,
4039 description : 'The weekly meeting for the mechanical sub-team. Learn about the design aspects of robot and 3D model parts.' ,
41- date : new Date ( '2025-02-19T16 :00:00' ) ,
40+ date : new Date ( '2025-02-12T16 :00:00' ) ,
4241 location : 'The ideas hub (second floor of the engineering building)' ,
4342 weekly : true ,
4443 endDate : new Date ( semesterEnd )
4544 }
46- // {
47- // title: 'Weekly Programming Meeting',
48- // description: 'The weekly meeting for the programming sub-team. Take a look at the code for the robot',
49- // date: new Date('1/1/2025'),
50- // time: '5:00pm',
51- // location: 'The ideas hub (second floor of the engineering building)',
52- // weekly: true,
53- // endDate: new Date(semesterEnd)
54- // },
55- // {
56- // title: 'Weekly Electrical Meeting',
57- // description: 'The weekly meeting for the electrical sub-team. Talk about improved batteries, wiring, and more!',
58- // date: new Date('1/2/2025'),
59- // time: '6:00',
60- // location: 'The ideas hub (second floor of the engineering building)',
61- // weekly: true,
62- // endDate: new Date(semesterEnd)
63- // },
64- // {
65- // title: 'Weekly Mechanical Meeting',
66- // description: 'The weekly meeting for the mechanical sub-team. Learn about the design aspects of robot and 3D model parts.',
67- // date: new Date('1/2/2025'),
68- // time: '4:00pm',
69- // location: 'The ideas hub (second floor of the engineering building)',
70- // weekly: true,
71- // endDate: new Date(semesterEnd)
72- // }
73- // {
74- // title: 'Engineering Week Showcase',
75- // description: 'Meet us to see the robot in action and learn about the club!',
76- // date: new Date(''),
77- // time: '11:00 AM',
78- // location: 'SERC Main Lobbby'
79- // },
80- // {
81- // title: 'Temple Ambler Showcase',
82- // description: 'Meet us to see the robot in action and learn about the club!',
83- // date: new Date(''),
84- // time: '9:15 AM',
85- // location: 'Temple Ambler Widener'
86- // }
8745]
8846
8947export default EVENT_INFO
0 commit comments