Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/features/EventItem/EventItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const EventItem = ({ name, date, brief, description, bgImage, frontImage, link,
let linkText: string;

if (!link) {
linkText = 'Event ended';
linkText = 'Upcoming!';
} else {
linkText = 'Sign up';
}
Expand Down
14 changes: 7 additions & 7 deletions src/routes/Events.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,31 +22,31 @@ const Events = () => {
const eventsData = [
{
name: "DecodED",
date: "15/03 - 17/03",
date: "21/03",
brief: "Free entry, educational",
description:
"We’re passionate about providing accessible tech education to students from all backgrounds and experiences. Our workshop style education program is tailored towards those with limited experience in software development and includes content that complements traditional Computer Science education taught at universities. With Hackiethon taking place right after the conclusion of the program, attendees will have the chance to put their new-found skills to the test! ",
bgImage: DecodEdImage,
frontImage: DecodEdImage2,
altBgImage: "Students in a classroom taking part of the DecodED workshop.",
altFrontImage: "Classroom with supplies table in front with several students attending DecodED workshop in the background.",
link: "",
link: "https://events.humanitix.com/decoded-2026",
},
{
name: "Hackiethon",
date: "22/03 - 24/03",
brief: "Free entry, begginer friendly",
date: "27/03 - 02/04",
brief: "Free entry, beginner friendly",
description:
"Our rookie hackathon is tailor-made for inexperienced but eager individuals! Unlike our main hackathon, it comes with valuable insights into the experience of competing and finding success in such events.",
bgImage: HackiethonImage2,
frontImage: HackiethonImage,
altBgImage: "HackMelbourne comitteee members in a lecutre hall setting up hackathon competition.",
altBgImage: "HackMelbourne committee members in a lecture hall setting up hackathon competition.",
altFrontImage: "Students in a lecture hall viewing hackathon competition being presented.",
link: "",
link: "https://events.humanitix.com/hackiethon-2026",
},
{
name: "Melbourne Hack",
date: "30/8 - 06/9",
date: "TBA",
brief: "Free entry, great competition",
description: `Melbourne Hack is a hackathon where participants use their entrepreneurial skills to build a product in 3 days. Given certain themes, participants will have to build something that solves a problem or meets a need. Then they will be able to pitch their product to a panel of judges!`,
bgImage: MelbHackImage,
Expand Down
4 changes: 2 additions & 2 deletions src/routes/Root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ function Root() {
const jointeam = {
title: ["Join the ", "Hack", "Melbourne team for 2026"],
desc: ["We make an impact on our future and learn some", "more skills along the way!"],
button: "Applications currently closed",
link: "",
button: "Applications open until March 27th!",
link: "https://docs.google.com/forms/d/e/1FAIpQLSfdjr-baFQDqfq7meThWdZ2PKPj1g58u8ai55twIBCcDmKCLg/viewform",
};

return (
Expand Down
Loading