Skip to content

Commit ed4e273

Browse files
authored
updated spring events (#516)
* updated spring events * removed extra hack logo
1 parent 1c20acb commit ed4e273

File tree

5 files changed

+29
-29
lines changed

5 files changed

+29
-29
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/stackschool-logo.jpg';
4-
import img2 from '../../images/hoth-logo.png';
3+
import img1 from '../../images/code2company.png';
4+
import img2 from '../../images/gpt.png';
55

66
const firstDescription =
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!';
7+
'Interested in software engineering and curious about the startup world? Join us for Code2Company, our entrepreneurship workshop where we\'ll learn how to build your first MVP and provide hands-on experience with our collab with Linkd (YC X25), a real YC-backed team!';
88

99
const secondDescription =
10-
'Join us on March 2nd for a 12-hour beginner-friendly hackathon open to all skill levels. See you there!';
10+
'Join us for a beginner to intermediate level one-off hacking day where we\'ll explore multi-agent retrieval chains and retrieval augmented generation (RAG) using Langchain!';
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'>StackSchool</h2>
19-
<img className='event-img' src={img1} alt='StackSchool' />
18+
<h2 className='event-title'>Code2Company</h2>
19+
<img className='event-img' src={img1} alt='Code2Company' />
2020
<p className='event-description'>{firstDescription}</p>
2121
</div>
2222
<div className='event-column'>
23-
<h2 className='event-title'>Hack on the Hill</h2>
24-
<img className='event-img' src={img2} alt='HOTH' />
23+
<h2 className='event-title'>HackGPT</h2>
24+
<img className='event-img' src={img2} alt='GPT' />
2525
<p className='event-description'>{secondDescription}</p>
2626
</div>
2727
</div>

src/images/code2company.png

465 KB
Loading

src/images/gpt.png

50.3 KB
Loading

src/images/hack-school-insta.jpg

-47.2 KB
Binary file not shown.

src/pages/Events.jsx

Lines changed: 21 additions & 21 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 hothimg from '../images/hoth-logo.png';
6-
import stackimg from '../images/stackschool-logo.jpg';
5+
import c2cimg from '../images/code2company.png';
6+
import gptimg from '../images/gpt.png';
77

88
export default function Events() {
99
useTitle(' | Events');
@@ -22,36 +22,36 @@ export default function Events() {
2222
</p>
2323
</div>
2424
<div className='current-events'>
25-
<h1>Winter 2024 Events</h1>
25+
<h1>Spring 2025 Events</h1>
2626
<div className='event'>
2727
<div className='info-container'>
28-
<h2 className='event-title'>StackSchool</h2>
28+
<h2 className='event-title'>Code2Company</h2>
2929
<p className='event-desc'>
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!
30+
Interested in software engineering and curious about the startup
31+
world? Join us for Code2Company, ACM Hack&apos;s entrepreneurship
32+
workshop where we&apos;ll walk you through building your first
33+
MVP, understanding financial basics, and how to get started in the
34+
startup world! We&apos;ll also provide an opportunity to
35+
collaborate with Linkd (YC X25) to get hands-on experience to
36+
build with a real YC-backed team!
3837
</p>
3938
</div>
40-
<img className='event-img' src={stackimg} alt='StackSchool Logo' />
39+
<img className='event-img' src={c2cimg} alt='C2C Logo' />
4140
</div>
4241
<div className='event second'>
4342
<div className='info-container'>
44-
<h2 className='event-title'>Hack on the Hill</h2>
43+
<h2 className='event-title'>HackGPT</h2>
4544
<p className='event-desc'>
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!
45+
ACM Hack is blasting off with HackGPT! Join us for a beginner to
46+
intermediate level one-off hacking day where we&apos;ll explore
47+
multi-agent retrieval chains and retrieval augmented generation
48+
(RAG) using Langchain, a chatbot library even WALL-E would&apos;ve
49+
kept in his treasure stash. Whether you&apos;re a robot , a probe,
50+
or a human , by the end of the workshop, you will be able to
51+
develop a multifunctional, personalized conversational chatbot!
5252
</p>
5353
</div>
54-
<img className='event-img' src={hothimg} alt='HOTH logo' />
54+
<img className='event-img' src={gptimg} alt='GPT Logo' />
5555
</div>
5656
</div>
5757
</div>

0 commit comments

Comments
 (0)