Skip to content

Commit 9e3fbd4

Browse files
committed
Added the SD workshop to the events page and updated sign up form to volunteering form
1 parent 8ca2eac commit 9e3fbd4

File tree

4 files changed

+22
-13
lines changed

4 files changed

+22
-13
lines changed
300 KB
Loading

src/data/EventsDatabase.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,22 @@ import { EventObject } from '../tools/CustomTypes'
33
const semesterEnd = '5/31/25'
44

55
const EVENT_INFO: EventObject[] = [
6+
{
7+
title: 'Weekly Solidworks Workshop',
8+
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',
9+
date: new Date('2025-02-17T17:30:00'),
10+
location: 'The ideas hub (second floor of the engineering building)',
11+
weekly: true,
12+
endDate: new Date(semesterEnd)
13+
},
614
{
715
title: 'General Body Meeting',
816
description: 'Updates on what happened since the last GBM and the plan for the rest of the semester as well as an activity',
917
date: new Date('2025-02-05T17:00:00'),
1018
// location: 'The Fish Bowl (first floor pf the engineering building)'
1119
location: '201A classroom (The ideas hub second floor of the engineering building)'
1220
},
21+
1322
{
1423
title: 'Weekly Programming Meeting',
1524
description: 'The weekly meeting for the programming sub-team. Take a look at the code for the robot',

src/pages/home/Home.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ const Home = (): React.ReactElement => {
3838

3939
<Styles.SectionHeaderGradient>
4040
<Styles.SectionHeader>
41-
<h2>Sign up and contact us on teams!</h2>
41+
<h2>Sign up for volunteering and contact us on teams!</h2>
4242
<div className='button-container'>
43-
<Button text={'Sign up here!'} size={'large'} source={'https://forms.gle/rp6BY6h4doLkZQ2E8'}/>
43+
<Button text={'Sign up for volunteering here!'} size={'large'} source={'https://forms.gle/1RcJw5DNXHVX2YzD8'}/>
4444
<Button text='Join Teams Here!' source={TEAMS}/>
4545
</div>
4646
</Styles.SectionHeader>

src/pages/meet-the-leads/MeetTheLeads.tsx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ import Styles from './MeetTheLeadsStyles'
1111

1212
// Images
1313
import JaredsFace from '../../assets/pics/Leads/jareds_face.jpg'
14-
//import StevensFace from '../../assets/pics/Leads/Stevens_Face.jpg'
1514
import TanishkasFace from '../../assets/pics/Leads/Tanishkas_face.jpg'
1615
import RoccosFace from '../../assets/pics/Leads/roccos_face.jpg'
17-
import NasiersFace from '../../assets/pics/Leads/Nasiers_face.jpg'
16+
// import NasiersFace from '../../assets/pics/Leads/Nasiers_face.jpg'
1817
import MalinsFace from '../../assets/pics/Leads/Malins_face.jpg'
1918
import BriansFace from '../../assets/pics/Leads/Brians_face.jpg'
2019
import AlessiasFace from '../../assets/pics/Leads/Alessia_headshot.png'
20+
// import JonahsFace from '../../assets/pics/Leads/JonahFace.jpeg'
2121
// a separator is needed for some reason, troubleshoot this or create a very small section div or style this like the robotics page
2222
//use robotics format
2323
//bakround is implemented but sections are not made to be compatible, change to gallery sections
@@ -53,7 +53,7 @@ const MeetTheLeads = (): React.ReactElement => {
5353
<div className='leads-slide'>
5454
<h2>Meet our Electrical Lead!</h2>
5555
<p>
56-
Jared Levin
56+
Jared Levin
5757
</p>
5858
</div>
5959
<div className='Leads-img-container'>
@@ -69,27 +69,27 @@ const MeetTheLeads = (): React.ReactElement => {
6969
</p>
7070
</div>
7171
<div className='leads-slide'>
72-
<h2>Meet our Web Manager!</h2>
72+
<h2>Meet our Programming Lead!</h2>
7373
<p>
74-
Nasier Fowlkes
74+
Brian Ervin
7575
</p>
7676
</div>
7777
<div className='Leads-img-container'>
78-
<img src={ NasiersFace }/>
78+
<img src={ BriansFace }/>
7979
</div>
8080
<div className='Leads-img-container'>
81-
<img src={ BriansFace }/>
81+
<img src={ TanishkasFace }/>
8282
</div>
8383
<div className='leads-slide'>
84-
<h2>Meet our Programming Lead!</h2>
84+
<h2>Meet our Project Manager!</h2>
8585
<p>
86-
Brian Ervin
86+
Tanishka Shah
8787
</p>
8888
</div>
8989
<div className='leads-slide'>
90-
<h2>Meet our Project Manager!</h2>
90+
<h2>Meet our Shop Manager!</h2>
9191
<p>
92-
Tanishka Shah
92+
Jonah Tesler
9393
</p>
9494
</div>
9595
<div className='Leads-img-container'>

0 commit comments

Comments
 (0)