Skip to content

Commit de1d542

Browse files
authored
Update Events (#42)
* feat: add highlighted events for Final Showcase 2025 and Pason Tech Talk * enabled links for events
1 parent 4027c65 commit de1d542

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

src/components/EventsSection/Event/Event.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const Event = (props: EventProps) => {
4040
<div>
4141
<HoverButton
4242
link={props.link}
43-
linkIsInternal={false}
43+
linkIsInternal={true}
4444
mode={ButtonMode.DARK}
4545
text={"Check it Out!"}
4646
/>

src/components/EventsSection/EventInformation.ts

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,27 @@ export interface Event {
1212
}
1313

1414
export const highlightedEvents: Event[] = [
15+
{
16+
date: "Saturday, May 3rd, 2025",
17+
description:
18+
"Join us for our 2025 Final Showcase, where we celebrate the incredible achievements of our project teams. This event promises to set new standards for innovation and excellence.",
19+
image: FinalShowcase24_img.src,
20+
link: "https://www.eventbrite.ca/e/tech-start-ucalgary-final-showcase-tickets-1286230141979?aff=erelexpmlt",
21+
time: "12:00 - 4:00PM",
22+
title: "Final Showcase 2025",
23+
},
24+
{
25+
date: "Thursday, March 20, 2025",
26+
description:
27+
"We hosted a Tech Talk featuring one of our sponsors, Pason! Our project managers and teams learned about the key aspects of using infrastructure as code and explored possible implementations using Terraform. Our project teams had the opportunity to gain a practical understanding of IaC concepts and tools.",
28+
image: PasonTechTalk_img.src,
29+
link: "https://www.linkedin.com/posts/tech-start-ucalgary_at-our-last-dev-night-we-hosted-a-tech-talk-activity-7130289774577254400-ESeU?utm_source=share&utm_medium=member_desktop",
30+
time: "5:30 - 7:00PM",
31+
title: "Pason Tech Talk",
32+
},
33+
];
34+
35+
export const previousEvents: Event[] = [
1536
{
1637
date: "Saturday, April 27, 2024",
1738
description:

0 commit comments

Comments
 (0)