add alumni to credits and minor fixes
continuous-integration/drone/push Build is passing Details

This commit is contained in:
hyper-neutrino 2024-04-25 01:38:53 -04:00
parent 405d37c466
commit 77c12ee66a
3 changed files with 29 additions and 6 deletions

View File

@ -665,7 +665,7 @@ export default function Academics() {
</ComponentWrapper>
<ComponentWrapper heading="What is your cumulative average?" align="left" noBackground>
<BarGraphHorizontal data={A18} width={barGraphWidth(isMobile, pageWidth)} height={DefaultProp.graphHeight} margin={barGraphMargin} />
<BarGraphHorizontal data={A18} width={barGraphWidth(isMobile, pageWidth)} height={DefaultProp.graphHeight} margin={{ ...barGraphMargin, left: 80 }} />
<span>mean: 86.137 | min: 70 | Q1: 80.99 | median: 88 | Q3: 91.14 | max: 96.53</span>
</ComponentWrapper>

View File

@ -4,7 +4,7 @@ import { BottomNav } from "@/components/BottomNav";
import { Header } from "@/components/Header";
import { Panel } from "@/components/Panel";
import { SectionHeader } from "@/components/SectionHeader";
import { CPWebDevs, communityReps, designers } from "@/data/contributors";
import { CPWebDevs, alumni, communityReps, designers } from "@/data/contributors";
import { pageRoutes } from "@/data/routes";
import styles from "../basePage.module.css";
@ -45,10 +45,7 @@ export default function Contributors() {
return (
<div className={styles.page}>
<Header />
<SectionHeader
title="Contributors"
subtitle="Huge thanks to all CSC members who have contributed to creating the first ever uWaterloo CS class profile!"
/>
<SectionHeader title="Contributors" subtitle="Huge thanks to all CSC members who have contributed to creating the second UWaterloo CS class profile!" />
<Panel>
<p>
The 2023 CS Class Profile was completed by members of the UW Computer Science Club. Specifically, several current and past members (as of this
@ -86,6 +83,13 @@ export default function Contributors() {
, for kickstarting the existence of the CS Class Profile and for providing feedback! Note there may be other anonymous contributors on any of the
teams or committees, but their names are not listed here.
</p>
<p>
Finally, our thanks go out to previous contributors as well who built the first version of the class profile on which the vast majority of this
version was built. A lot of work is shared year to year, so we want to express our gratitude to the previous team as well (note: members on this
year&apos;s list are not repeated; see <a href="https://csclub.uwaterloo.ca/classprofile/2022/contributors/">this page</a> for a full list of last
year&apos;s team).
</p>
<ContributorGroup group={alumni} />
</Panel>
<BottomNav leftPage={pageRoutes.personal} rightPage={pageRoutes.home}></BottomNav>
</div>

View File

@ -30,3 +30,22 @@ export const CPWebDevs = [
{ name: "Emily Huang", link: "https://www.linkedin.com/in/emilyhuxng/" },
{ name: "Franklin Ramirez", link: "https://www.linkedin.com/in/franklin-ramirez611/" },
];
export const alumni = [
{ name: "Aaryan Shroff (Design)", link: "https://www.linkedin.com/in/aaryan-shroff" },
{ name: "Amy Luo (Reps)", link: "https://www.linkedin.com/in/amytluo/" },
{ name: "Amy Wang (Web)", link: "" },
{ name: "Beihao Zhou (Web)", link: "https://www.linkedin.com/in/beihaozhou/" },
{ name: "Jared He (Web)", link: "https://www.linkedin.com/in/jaredhe/" },
{ name: "Jenny Zhang (Design)", link: "https://www.instagram.com/j3nny_zhang" },
{ name: "Juthika Hoque (Reps)", link: "https://www.linkedin.com/in/juthikahoque/" },
{ name: "Mark Chiu (Web)", link: "https://linkedin.com/in/markchiu02" },
{ name: "Max Erenberg (Syscom)", link: "https://maxerenberg.github.io/" },
{ name: "Nikki Guo (Reps)", link: "https://www.linkedin.com/in/nikkiguo" },
{ name: "Olivia Liu (Reps)", link: "" },
{ name: "Rachel Ma (Design)", link: "" },
{ name: "Raymond Li (Syscom)", link: "https://raymond.li/" },
{ name: "Sat Arora (Reps)", link: "https://www.linkedin.com/in/sat-arora/" },
{ name: "Shahan Nedadahandeh (Web)", link: "https://shahan.ca/" },
{ name: "Vivian Guo (Design)", link: "https://www.linkedin.com/in/vivianvg" },
];