Skip to content

Commit 911b793

Browse files
authored
Merge pull request #200 from HackMelbourne/update
updated events
2 parents 234c73b + 7c8f6da commit 911b793

6 files changed

Lines changed: 13 additions & 13 deletions

File tree

src/features/EventItem/EventItem.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ const EventItem = ({ name, date, brief, description, bgImage, frontImage, link,
2020
let linkText: string;
2121

2222
if (!link) {
23-
linkText = 'Coming soon';
23+
linkText = 'Event ended';
2424
} else {
25-
linkText = 'Learn more';
25+
linkText = 'Sign up';
2626
}
2727

2828
return (

src/layouts/Layout.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ const Layout = () => {
6464
link: "/about/events",
6565
},
6666
{
67-
title: "Meet the team",
68-
desc: "See our amazing team",
67+
title: "About Us",
68+
desc: "Learn more about us!",
6969
Icon: FaUser,
7070
image: "/img/temp-bg.jpg",
7171
link: "/about/meettheteam",
@@ -98,8 +98,8 @@ const Layout = () => {
9898
const nav = {
9999
clubname: "HackMelbourne",
100100
logo: "/img/HM_White_Transparent.png",
101-
pages: ["About", "Links", "Calendar", "Sponsors", "Blog"],
102-
links: ["/about/meettheteam", "upcoming/links", "/upcoming/calendar", "/sponsors", "/blogs"],
101+
pages: ["About", "Blog", "Calendar", "Sponsors", "Links"],
102+
links: ["/about/meettheteam", "/blogs", "/upcoming/calendar", "/sponsors", "upcoming/links"],
103103
pills: [aboutPills, linkPills, calendarPills, sponsorPills, blogPills],
104104
};
105105

src/routes/Calendar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const Calendar = () => {
1919

2020
return (
2121
<>
22-
<TitleHero pageTitle="Calendar" pageDescription="See our upcoming list of big and small events!" />
22+
<TitleHero pageTitle="Calendar" pageDescription="See our upcoming list of events!" />
2323
{isLoading ? (
2424
<div className="col-span-1 mt-8 flex justify-center items-center">
2525
<CircularProgress color="inherit"/>

src/routes/Events.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import MelbHackImage2 from "../assets/images/MelbourneHack-2023/MelbourneHack2.j
1414

1515
const Events = () => {
1616
const pageInfo = {
17-
title: "Events / Initiatives",
17+
title: "Events",
1818
description: `Throughout the year, HackMelbourne offers many opportunities for both
1919
complete beginners and seasoned veterans to display their teamwork, coding
2020
and leadership skills.`,

src/routes/MeetTheTeam.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ import CircularProgress from "@mui/material/CircularProgress";
1717

1818
const MeetTheTeam = () => {
1919
const pageInfo = {
20-
title: "Meet the Team",
21-
description: `Throughout the year, HackMelbourne offers many opportunities for both complete beginners and seasoned veterans to display their teamwork, coding and leadership skills.`,
20+
title: "About Us",
21+
description: `HackMelbourne is a student club based in Melbourne, dedicated to bringing technology education to everyone! We run a variety of events throughout the year, including hackathons, workshops, and social events. Our goal is to create a welcoming and inclusive environment for all students, regardless of their background or experience level.`,
2222
};
2323

2424
const teamsDataTemplate = [

src/routes/Sponsors.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const Sponsors = () => {
1818

1919
const heroInfo = {
2020
title: "Sponsorships",
21-
body: "Throughout the year, HackMelbourne offers many opportunities for both complete beginners and seasoned veterans to display their teamwork, coding and leadership skills.",
21+
body: "These are the amazing companies that help us make HackMelbourne happen. We are always looking for new sponsors to support us, so if you are interested, please get in touch!",
2222
};
2323

2424
const goldInfo: SponsorProps[] = [
@@ -87,8 +87,8 @@ const Sponsors = () => {
8787
// ];
8888

8989
const sponsorCTA = {
90-
title: ["Be a", "Hack", "Melbourne sponsor for 2024"],
91-
desc: ["Join the journey: be a HackMelbourne 2024 sponsor", "and help us spread the excitement of hackathons!"],
90+
title: ["Be a", "Hack", "Melbourne sponsor for 2025"],
91+
desc: ["Help us run our events and make a difference in the community!"],
9292
button: "Learn More",
9393
link: "mailto:sponsorship@hack.melbourne",
9494
};

0 commit comments

Comments
 (0)