Skip to content

Commit 4b807fb

Browse files
authored
update officers
1 parent 9cb202a commit 4b807fb

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

components/Officers.tsx

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { ReactNode } from 'react';
22
import Section from './Section';
3-
import { SiReact, SiNextdotjs, SiVuedotjs, SiNuxtdotjs, SiSvelte, SiTypescript, SiPython, SiJava, SiKotlin, SiRust, SiCsharp, SiCplusplus, SiC} from 'react-icons/si';
3+
import { SiReact, SiNextdotjs, SiVuedotjs, SiNuxtdotjs, SiSvelte, SiTypescript, SiPython, SiJava, SiKotlin, SiRust, SiCsharp, SiCplusplus, SiC, SiJavascript} from 'react-icons/si';
44

55

66
// The "Meet our officers" section on the home page.
@@ -16,16 +16,16 @@ export default function Officers() {
1616
Stella Su is an avid programmer interested in artificial intelligence and computational biology. She has
1717
had some experience with using Computer Vision and Natural Language Processing(NLP) models.
1818
</OfficerCard>
19-
<OfficerCard name="Daniel Kou" position="Vice President" src="/officers/daniel.png" languages={['java', 'py', 'clang', 'cplusplus', ]}>
19+
<OfficerCard name="Daniel Kou" position="Vice President" src="/officers/daniel.png" languages={['java', 'py', 'clang', 'cplusplus', ]} reverse>
2020
Daniel Kou is a C++ and Python enthusiast who is interested in data science, robotics control, and AI.
2121
He does FRC and competitive programming/physics/math.
2222
</OfficerCard>
2323
<OfficerCard name="Hannah Mei" position="Secretary" src="/officers/hannah.jpg" languages={['java', 'py']}>
2424
Hannah Mei is a junior at Gunn High School with experience in java, scheme, and a bit of python. She is
2525
most interested in learning more about web development
2626
</OfficerCard>
27-
<OfficerCard name="Mary Yu" position="Treasurer" src="/officers/mary.png" languages={[]} reverse>
28-
{/* Stella Su is a ___. */}
27+
<OfficerCard name="Mary Yu" position="Treasurer" src="/officers/mary.png" languages={['javascript', 'java']} reverse>
28+
{Mary Yu is a typescript enjoyer, she is interested in AI integration in databases.}
2929
</OfficerCard>
3030
</div>
3131
</Section>
@@ -57,7 +57,7 @@ function OfficerCard(props: OfficerCardProps) {
5757
)
5858
}
5959

60-
type Language = "react" | "next" | "vue" | "nuxt" | "svelte" | "ts" | "py" | "java" | "kt" | "rs" | "cs" | "cplusplus" | "clang";
60+
type Language = "react" | "next" | "vue" | "nuxt" | "svelte" | "ts" | "py" | "java" | "javascript" | "kt" | "rs" | "cs" | "cplusplus" | "clang";
6161
function LanguageIcon(props: { language: Language }) {
6262
switch (props.language) {
6363
case 'react': return <SiReact />;
@@ -72,6 +72,7 @@ function LanguageIcon(props: { language: Language }) {
7272
case 'rs': return <SiRust />;
7373
case 'cplusplus': return <SiCplusplus />;
7474
case 'clang': return <SiC />;
75+
case 'javascript': return <SiJavascript />;
7576
default: return <SiCsharp />;
7677
}
7778
}

0 commit comments

Comments
 (0)