Skip to content

Commit 8a089b4

Browse files
authored
Updated Events to Winter Events (#504)
* update to winter events * edit curr events
1 parent eb5277e commit 8a089b4

File tree

4 files changed

+29
-30
lines changed

4 files changed

+29
-30
lines changed

src/components/Home/CurrEvents.jsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
import React from 'react';
22
import '../../styles/Home.css';
3-
import img1 from '../../images/hack-school-insta.jpg';
4-
import img2 from '../../images/hack-fam-insta.png';
3+
import img1 from '../../images/stackschool-logo.jpg';
4+
import img2 from '../../images/hoth-logo.png';
55

66
const firstDescription =
7-
'Join us in our beginner-friendly web development workshop series, where you build a website using tools such as HTML, CSS, and ReactJS!';
7+
'Join us in our beginner-to-intermediate full stack mobile development workshop where we will build an app using Swift on the frontend and MongoDB on the backend!';
88

99
const secondDescription =
10-
'Get placed in fam groups to meet people in the Hack community through smaller group socials!';
10+
'Join us on March 2nd for a 12-hour beginner-friendly hackathon open to all skill levels. See you there!';
1111

1212
export default function CurrEvents() {
1313
return (
1414
<div>
1515
<h1 className='section-title'>Current Events</h1>
1616
<div className='events-container'>
1717
<div className='event-column'>
18-
<h2 className='event-title'>Hack School</h2>
19-
<img className='event-img' src={img1} alt='HackSchool' />
18+
<h2 className='event-title'>StackSchool</h2>
19+
<img className='event-img' src={img1} alt='StackSchool' />
2020
<p className='event-description'>{firstDescription}</p>
2121
</div>
2222
<div className='event-column'>
23-
<h2 className='event-title'>Hack Fam</h2>
24-
<img className='event-img' src={img2} alt='HackFam' />
23+
<h2 className='event-title'>Hack on the Hill</h2>
24+
<img className='event-img' src={img2} alt='HOTH' />
2525
<p className='event-description'>{secondDescription}</p>
2626
</div>
2727
</div>

src/images/hoth-logo.png

1.01 MB
Loading

src/images/stackschool-logo.jpg

145 KB
Loading

src/pages/Events.jsx

Lines changed: 21 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import React from 'react';
22
import '../styles/Events.css';
33
import useTitle from '../components/General/useTitle';
44

5-
import famimg from '../images/hack-fam-insta.png';
6-
import hackimg from '../images/hack-school-insta.jpg';
5+
import hothimg from '../images/hoth-logo.png';
6+
import stackimg from '../images/stackschool-logo.jpg';
77

88
export default function Events() {
99
useTitle(' | Events');
@@ -22,37 +22,36 @@ export default function Events() {
2222
</p>
2323
</div>
2424
<div className='current-events'>
25-
<h1>Fall 2024 Events</h1>
25+
<h1>Winter 2024 Events</h1>
2626
<div className='event'>
2727
<div className='info-container'>
28-
<h2 className='event-title'>Hack School</h2>
28+
<h2 className='event-title'>StackSchool</h2>
2929
<p className='event-desc'>
30-
Brrrringgggg! Hackschool is now in session! Throughout the
31-
quarter, our beginner-friendly, flagship web development workshop
32-
series will help you learn and utilize skills such as HTML, CSS,
33-
and React.JS to build your very own website! All are welcome to
34-
learn, build, code, and eat with us, so pencil Hackschool into
35-
your schedule! We’ll see you there!
30+
Good things come in stacks—Money, Pancakes, and Tech! Join us this
31+
quarter for Stackschool, a beginner-to-intermediate full stack
32+
mobile development workshop where we&apos;ll build an app using
33+
Swift on the frontend and MongoDB on the backend. Whether
34+
you&apos;re new to iOS development or looking to level up, this
35+
hands-on session will guide you through all parts of frontend,
36+
backend integration, and launching a fully functional app. Come
37+
learn, code, and stack up your skills with us!
3638
</p>
3739
</div>
38-
<img className='event-img' src={hackimg} alt='Hack School Logo' />
40+
<img className='event-img' src={stackimg} alt='StackSchool Logo' />
3941
</div>
4042
<div className='event second'>
4143
<div className='info-container'>
42-
<h2 className='event-title'>Hack Fam</h2>
44+
<h2 className='event-title'>Hack on the Hill</h2>
4345
<p className='event-desc'>
44-
Join us for Hack Fam, one of ACM Hack&apos;s exciting events of
45-
the quarter! Whether you&apos;re new to ACM Hack or looking to
46-
deepen your connection within the club, HackFam is your gateway to
47-
building meaningful relationships with fellow CS enthusiasts at
48-
UCLA. You&apos;ll be sorted into &apos;Fams&apos; led by our
49-
awesome officers, where you&apos;ll meet peers, make friends, and
50-
get introduced to the vibrant ACM Hack community. Don&apos;t miss
51-
this chance to find your Fam and kickstart your journey with ACM
52-
Hack!
46+
Looking for a beginner-friendly hackathon? HOTH XII is a 12-hour
47+
hackathon that welcomes programmers of all levels, especially
48+
beginners, to create a project from start to finish. Learn from
49+
workshops, receive technical help from mentors, meet new friends,
50+
eat free food, and get the chance to win amazing prizes. See you
51+
there on Sunday March 2nd at Grand Horizon!
5352
</p>
5453
</div>
55-
<img className='event-img' src={famimg} alt='Hack Fam Logo' />
54+
<img className='event-img' src={hothimg} alt='HOTH logo' />
5655
</div>
5756
</div>
5857
</div>

0 commit comments

Comments
 (0)