Skip to content
This repository was archived by the owner on Jan 17, 2024. It is now read-only.
Open
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
Binary file added src/assets/img/charity/charitycasecop.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/img/charity/coopLogo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/img/charity/funrun2022.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 2 additions & 8 deletions src/components/charity/modal/custom/CaseCompBody.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Row, Col } from "reactstrap";

import CharityBody from "../CharityBody";

import caseCompWinners from 'assets/img/charity/case-comp2021Winners.jpg';
//import caseCompWinners from 'assets/img/charity/case-comp2021Winners.jpg';

const CaseCompBody = ({ event }) => {
return (
Expand All @@ -13,15 +13,9 @@ const CaseCompBody = ({ event }) => {
<Row className="text-center">
<Col>
<div className='verticalAlignTextDiv'>
<p>Congratulations to our winning team, Ignite Consulting, for their incredible solution. Well done Annie Yan, Nicole Huang, Jerry Yeh and Ethan Wong!</p>
<p>Congratulations to the winning team, JMP Consulting (Mridul Pant, Palaash Rawat, Jay Shah). Their strong emphasis on feasible recruitment strategies that target TLR’s ideal demographic, impressed our judges immensely. Well done!</p>
</div>
</Col>
<Col>
<img
src={caseCompWinners}
alt={event["title"]}
style={{ width: "100%" }} />
</Col>
</Row>
</>
);
Expand Down
33 changes: 24 additions & 9 deletions src/data/CharityData.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import hscWorkshop from '../assets/img/charity/hsc-workshops.jpg';
import pokerNight from '../assets/img/charity/poker.jpg';
import caseComp2021 from '../assets/img/charity/case-comp2021.png';
import funRun from '../assets/img/charity/funRun.jpg';
import charitycasecomp from '../assets/img/charity/charitycasecop.jpg';
import funRun22 from '../assets/img/charity/funrun2022.jpg';

// Sponsor charity images
import ILF from "assets/img/charity/logos/ilf.png";
Expand All @@ -19,9 +21,10 @@ import WorldVision from "assets/img/charity/logos/world_vision.png";
// Upcoming event images
import FHF from "assets/img/charity/upcoming/40_hour_famine.png";
import WGS from "assets/img/charity/upcoming/worlds_greatest_shave.png";
import coopLogo from "../assets/img/charity/coopLogo.jpg";

const START = 2019;
const END = 2021;
const END = 2022;

const EVENTS = [
[
Expand Down Expand Up @@ -97,6 +100,23 @@ const EVENTS = [
"link": "https://www.facebook.com/events/286927249456511/",
},
],
[
{
// Special items specifically for the case comp
"special": "casecomp",
// Regular
"title": "Case Comp 2021",
"image": charitycasecomp,
"description": `In term 2, we collaborated with the TLR Foundation to deliver a case challenging teams to increase the number of suitable donors on the Australian Bone Marrow Donor Registry (ABMDR). `,
"link": "https://www.facebook.com/events/369691528601159/",
},
{
"title": "Fun Run",
"image": funRun22,
"description": `This year, Co-ops walked or ran from Rose Bay to Lighthouse Reserve in Vaucluse, in support of the Givit Flood Relief Appeal. `,
"link": "https://www.facebook.com/events/2052689421569622",
},
],
];

const SPONSORS = [
Expand Down Expand Up @@ -134,14 +154,9 @@ const SPONSORS = [

const UPCOMING = [
{
"name": "40 Hour Famine",
"image": FHF,
"date": "17th June 2021",
},
{
"name": "World's Greatest Shave",
"image": WGS,
"date": "15th Oct 2021",
"name": "Poker Night",
"image": coopLogo,
"date": "Term 3",
},
];

Expand Down