Skip to content

Commit cffd989

Browse files
committed
update
1 parent cd1c4bb commit cffd989

File tree

2 files changed

+20
-21
lines changed

2 files changed

+20
-21
lines changed

src/app/about/components/Team/Executives.tsx

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,25 @@
11
import Image from "next/image";
2-
import avatar from "../../../../../public/team/avatar.webp";
3-
import victoria from "../../../../../public/team/victoria.jpg";
4-
import megan from "../../../../../public/team/megan.jpg";
2+
import jason from "../../../../../public/team/jason.jpg";
3+
import owen from "../../../../../public/team/owen.jpg";
54

65
export default function Executives() {
76
return (
87
<div className="gap-10 grid auto-rows-fr grid-cols-1 sm:grid-cols-2">
98
{new Array(
109
{
11-
name: "Victoria Reguyal",
12-
role: "President",
13-
avatar: victoria,
10+
name: "Jason Zhao",
11+
role: "Head of Engineering",
12+
avatar: jason,
1413
description:
15-
"I’m a senior and I joined Team 479 as a freshman to learn about engineering and electronics while having fun with robots. Though I’ve been interested in STEM since elementary school, I started out with hardly any relevant experience. But in FTC, I have been a part of a warm community with people who push each other to learn and achieve more. Outside of school, I like to spend my time reading, playing games, and exploring the city.",
14+
"In my sophomore year, I joined the FTC robotics team 479, feeling a mix of excitement and nerves. The world of robotics and engineering was new to me, and I was unsure of how I would fit in. However, as I spent more time with the team, I quickly became immersed in the technical challenges and collaborative environment. I developed a passion for engineering, learning new skills and concepts along the way. The support from my teammates helped me grow more confident, and I found myself contributing actively to the team's projects, gaining valuable experience in the process.",
1615
},
1716

1817
{
19-
name: "Megan Chan",
18+
name: "Owen Shi",
2019
role: "Vice President",
21-
avatar: megan,
20+
avatar: owen,
2221
description:
23-
"I joined the team as a sophomore, looking to learn more about mechanical engineering and electronics. Participating in the late-night meetings, I learned more about engineering and FTC in general. Learning from others, I began to take a role in our team for engineering. I’m excited to continue learning about robotics and strive to better my engineering skills to lead the engineering aspect of the team. Outside of school, I really enjoy sleeping in, playing video games, and buying weird snacks to try with friends.",
22+
"I joined Stuy Fusion a little late, as a sophomore, unsure of where I could contribute. Determined to help out, I quickly immersed myself in learning FTC software and discovered my passion for programming and problem-solving. Being part of Stuy Fusion has sharpened my technical skills and taught me the value of collaboration and perseverance. Outside of robotics, I enjoy playing video games and swimming, both of which help me unwind and stay motivated in everything I do.",
2423
},
2524
).map((v, i) => (
2625
<div

src/app/about/components/Team/Heads.tsx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
11
import Image from "next/image";
22
import avatar from "../../../../../public/team/avatar.webp";
3-
import owen from "../../../../../public/team/owen.jpg"
4-
import jason from "../../../../../public/team/jason.jpg"
5-
import elizabeth from "../../../../../public/team/elizabeth.jpg"
3+
import owen from "../../../../../public/team/owen.jpg";
4+
import jason from "../../../../../public/team/jason.jpg";
5+
import elizabeth from "../../../../../public/team/elizabeth.jpg";
66

77
export default function Heads() {
88
return (
99
<div className="gap-10 grid auto-rows-fr grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 mt-20">
10-
{ new Array(
10+
{new Array(
1111
{
12-
name: "Jason Zhao",
12+
name: "Kiran Yesley",
1313
role: "Head of Engineering",
14-
avatar: jason,
14+
avatar: avatar,
1515
description:
16-
"In my sophomore year, I joined the FTC robotics team 479, feeling a mix of excitement and nerves. The world of robotics and engineering was new to me, and I was unsure of how I would fit in. However, as I spent more time with the team, I quickly became immersed in the technical challenges and collaborative environment. I developed a passion for engineering, learning new skills and concepts along the way. The support from my teammates helped me grow more confident, and I found myself contributing actively to the team's projects, gaining valuable experience in the process.",
16+
"I’m an engineer who loves clear thinking and kind teams. I spend my days turning messy ideas into simple systems, and making sure people have the tools, context, and calm to do their best work. I care a lot about mentoring, writing things down, and leaving code—and people—better than I found them. Outside of work, I’m usually making music, sketching goofy product ideas, or hunting for the perfect cappuccino.",
1717
},
1818

1919
{
20-
name: "Owen Shi",
20+
name: "Stephen Chen",
2121
role: "Head of Programming",
22-
avatar: owen,
22+
avatar: avatar,
2323
description:
24-
"I joined Stuy Fusion a little late, as a sophomore, unsure of where I could contribute. Determined to help out, I quickly immersed myself in learning FTC software and discovered my passion for programming and problem-solving. Being part of Stuy Fusion has sharpened my technical skills and taught me the value of collaboration and perseverance. Outside of robotics, I enjoy playing video games and swimming, both of which help me unwind and stay motivated in everything I do.",
24+
"I lead programming with a steady hand and a soft spot for curious questions. I like breaking big problems into small, friendly steps, and I’m happiest when teammates feel confident shipping their own ideas. I’m big on readable code, thoughtful reviews, and the occasional dad joke in a commit message. When I clock out, you’ll find me exploring new games, swimming laps, or baking cookies for whoever’s stuck on a tricky bug.",
2525
},
2626

2727
{
2828
name: "Elizabeth Chen",
2929
role: "Head of Marketing",
3030
avatar: elizabeth,
3131
description:
32-
"I joined the team as a sophomore with zero prior experience but a strong interest in STEM. Although I was reserved at first, I’ve become a much more confident communicator by participating in and leading outreach initiatives. As Head of Marketing, I'm excited to continue improving myself while giving back to the community and inspiring younger generations to explore STEM. Outside of robotics, I enjoy trying new restaurants with friends, drawing, and watching TV."
32+
"I joined the team as a sophomore with zero prior experience but a strong interest in STEM. Although I was reserved at first, I’ve become a much more confident communicator by participating in and leading outreach initiatives. As Head of Marketing, I'm excited to continue improving myself while giving back to the community and inspiring younger generations to explore STEM. Outside of robotics, I enjoy trying new restaurants with friends, drawing, and watching TV.",
3333
},
3434
).map((v, i) => (
3535
<div

0 commit comments

Comments
 (0)