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
4 changes: 2 additions & 2 deletions src/features/EventItem/EventItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ const EventItem = ({ name, date, brief, description, bgImage, frontImage, link,
let linkText: string;

if (!link) {
linkText = 'Coming soon';
linkText = 'Event ended';
} else {
linkText = 'Learn more';
linkText = 'Sign up';
}

return (
Expand Down
8 changes: 4 additions & 4 deletions src/layouts/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ const Layout = () => {
link: "/about/events",
},
{
title: "Meet the team",
desc: "See our amazing team",
title: "About Us",
desc: "Learn more about us!",
Icon: FaUser,
image: "/img/temp-bg.jpg",
link: "/about/meettheteam",
Expand Down Expand Up @@ -98,8 +98,8 @@ const Layout = () => {
const nav = {
clubname: "HackMelbourne",
logo: "/img/HM_White_Transparent.png",
pages: ["About", "Links", "Calendar", "Sponsors", "Blog"],
links: ["/about/meettheteam", "upcoming/links", "/upcoming/calendar", "/sponsors", "/blogs"],
pages: ["About", "Blog", "Calendar", "Sponsors", "Links"],
links: ["/about/meettheteam", "/blogs", "/upcoming/calendar", "/sponsors", "upcoming/links"],
pills: [aboutPills, linkPills, calendarPills, sponsorPills, blogPills],
};

Expand Down
2 changes: 1 addition & 1 deletion src/routes/Calendar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const Calendar = () => {

return (
<>
<TitleHero pageTitle="Calendar" pageDescription="See our upcoming list of big and small events!" />
<TitleHero pageTitle="Calendar" pageDescription="See our upcoming list of events!" />
{isLoading ? (
<div className="col-span-1 mt-8 flex justify-center items-center">
<CircularProgress color="inherit"/>
Expand Down
2 changes: 1 addition & 1 deletion src/routes/Events.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import MelbHackImage2 from "../assets/images/MelbourneHack-2023/MelbourneHack2.j

const Events = () => {
const pageInfo = {
title: "Events / Initiatives",
title: "Events",
description: `Throughout the year, HackMelbourne offers many opportunities for both
complete beginners and seasoned veterans to display their teamwork, coding
and leadership skills.`,
Expand Down
4 changes: 2 additions & 2 deletions src/routes/MeetTheTeam.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import CircularProgress from "@mui/material/CircularProgress";

const MeetTheTeam = () => {
const pageInfo = {
title: "Meet the Team",
description: `Throughout the year, HackMelbourne offers many opportunities for both complete beginners and seasoned veterans to display their teamwork, coding and leadership skills.`,
title: "About Us",
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.`,
};

const teamsDataTemplate = [
Expand Down
6 changes: 3 additions & 3 deletions src/routes/Sponsors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const Sponsors = () => {

const heroInfo = {
title: "Sponsorships",
body: "Throughout the year, HackMelbourne offers many opportunities for both complete beginners and seasoned veterans to display their teamwork, coding and leadership skills.",
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!",
};

const goldInfo: SponsorProps[] = [
Expand Down Expand Up @@ -87,8 +87,8 @@ const Sponsors = () => {
// ];

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