Skip to content

Commit

Permalink
Merge pull request #186 from HackMelbourne/new-hoodie
Browse files Browse the repository at this point in the history
Updated hoodie banner
  • Loading branch information
e3lo authored Aug 4, 2024
2 parents 56e1fbf + 2ee7573 commit aee3807
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
Binary file added src/assets/images/Hoodie-2024/Hoodie-2024.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 5 additions & 5 deletions src/features/BannerStandard/BannerStandard.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Link } from 'react-router-dom';
import { motion } from 'framer-motion';
import { Link } from "react-router-dom";
import { motion } from "framer-motion";

import HMButton from '../../components/Button/HMButton';
import HMButton from "../../components/Button/HMButton";

interface BannerInfo {
img: string;
Expand Down Expand Up @@ -45,7 +45,7 @@ function BannerStandard({ img, title, desc, button, link }: BannerInfo) {
initial="hidden"
whileInView="show">
<motion.div className="md:w-[440px] md:h-[505px] shrink-0 self-stretch" variants={item} custom={1}>
<img src={img} alt={title}/>
<img src={img} alt={title} />
</motion.div>

<div className="flex flex-col items-center md:items-start gap-5 self-stretch md:self-auto">
Expand All @@ -62,7 +62,7 @@ function BannerStandard({ img, title, desc, button, link }: BannerInfo) {
</motion.div>

<motion.div variants={item} custom={-1}>
<HMButton text={button} color="neutral" style="border" link={link}></HMButton>
<HMButton text={button} color="primary" style="border" link={link}></HMButton>
</motion.div>
</div>
</motion.div>
Expand Down
10 changes: 5 additions & 5 deletions src/routes/Root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import HackiethonImage from "../assets/images/Hackiethon-2022/Hackiethon2.jpg";
import MelbHackImage from "../assets/images/MelbourneHack-2023/MelbourneHack.jpg";

// Hoodie Imports
import HoodieBack from "../assets/images/Hoodie-2023/HM_Hoodie_Back.png";
import HoodieBack from "../assets/images/Hoodie-2024/Hoodie-2024.png";

// Constants
import { UMSU_LINK } from "../constants";
Expand Down Expand Up @@ -57,17 +57,17 @@ function Root() {

const hoodie = {
img: HoodieBack,
title: "HackMelbourne 2023 Exclusive Hoodie",
desc: "Remember the amazing year of 2023 and our achievements.",
title: "HackMelbourne 2024 Exclusive Hoodie",
desc: "See a super comfy hoodie and support our efforts across 2024 for only $55!",
button: "See details",
link: "",
link: "https://docs.google.com/forms/d/e/1FAIpQLSehAHqWj4rofplkEzLk3BYyHr3h72n_sqWz55zYqTgTTnZ6Gg/viewform",
};

const jointeam = {
title: ["Join the ", "Hack", "Melbourne team for 2024"],
desc: ["We make an impact on our future and learn some", "more skills along the way!"],
button: "Apply Now",
link: "https://docs.google.com/forms/d/e/1FAIpQLSc_Cu4yD6Du6LWXD4itRBALJ0elsou0LN56xKPveT3HvrlBmw/viewform",
link: "",
};

return (
Expand Down

0 comments on commit aee3807

Please sign in to comment.