Skip to content

Commit

Permalink
Merge branch 'features/MeetTheTeamPage' of https://github.com/hack-rp…
Browse files Browse the repository at this point in the history
…i/HackRPI-Website-2024 into features/MeetTheTeamPage
  • Loading branch information
CooperW824 committed Jun 2, 2024
2 parents b7f5dc5 + 5098e1f commit 5485d81
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/team/team.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import React, { useCallback, useEffect, useState } from "react";
import HackRPILink from "../themed-components/hackrpi-link";
import { Director, team } from "../../data/members";
// import { teamColors } from "../../data/members";
import {executive } from "../../data/members";
import { executive } from "../../data/members";
import Image from "next/image";

export default function TeamComponent() {
Expand Down
12 changes: 10 additions & 2 deletions data/members.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const executive = {
"CJ Marino": cj,
"Cooper Werner": cooper,
"Miranda Zheng": miranda,
}
};

export const teamColors = {
president: { bg: "#303ECF", text: "#ffffff" },
Expand All @@ -30,7 +30,15 @@ export const teamColors = {
};

export interface Director {
name: "Xenia Khusid" | "Adwait Naware" | "Vickie Chen" | "Grace Hui" | "Heman Kolla" | "CJ Marino" | "Cooper Werner" | "Miranda Zheng";
name:
| "Xenia Khusid"
| "Adwait Naware"
| "Vickie Chen"
| "Grace Hui"
| "Heman Kolla"
| "CJ Marino"
| "Cooper Werner"
| "Miranda Zheng";
role: string;
image: string;
"team-color": TeamColor;
Expand Down

0 comments on commit 5485d81

Please sign in to comment.