Skip to content

Commit 7a2eab9

Browse files
MaxGhenisclaude
andauthored
Update Pavel's title to Director of Growth and add Ben Ogorek as contractor (#2817)
* Update Pavel's title to Director of Growth and add Ben Ogorek as contractor - Updated Pavel Makarchuk's title from Policy Modeling Manager to Director of Growth - Added new headshot for Pavel - Added Ben Ogorek as a data scientist contractor with bio and headshot - Added Contractors section to About page 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * Remove old Pavel headshot * Remove forced migration detail from Pavel's bio --------- Co-authored-by: Claude <noreply@anthropic.com>
1 parent 5540bb6 commit 7a2eab9

File tree

5 files changed

+21
-5
lines changed

5 files changed

+21
-5
lines changed

src/data/staff.js

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,9 @@ Computer Science from the University of Durham.`,
2626
export const staff = {
2727
pavel_makarchuk: {
2828
name: "Pavel Makarchuk",
29-
bio: `is a Policy Modeling Manager at PolicyEngine. He earned a bachelor’s
30-
degree in Economics from Marist College where he researched the economic
31-
implications of forced migration.`,
32-
image: require("../images/authors/pavel-makarchuk.png"),
29+
bio: `is the Director of Growth at PolicyEngine. He earned a bachelor's
30+
degree in Economics from Marist College.`,
31+
image: require("../images/authors/pavel-makarchuk.jpeg"),
3332
},
3433
anthony_volk: {
3534
name: "Anthony Volk",
@@ -85,6 +84,17 @@ The Rochester Institute of Technology.`,
8584
},
8685
};
8786

87+
export const contractors = {
88+
ben_ogorek: {
89+
name: "Ben Ogorek",
90+
bio: `is a data scientist at PolicyEngine. He co-founded Google's People
91+
Analytics Data Science team and previously held data science leadership
92+
positions at Spencer Health Solutions and Nationwide Insurance. Ben holds a PhD
93+
in Statistics from North Carolina State University.`,
94+
image: require("../images/authors/ben-ogorek.jpeg"),
95+
},
96+
};
97+
8898
export const advisors = {
8999
tim_shaw: {
90100
name: "Tim Shaw",

src/images/authors/ben-ogorek.jpeg

-167 KB
Loading
55.3 KB
Loading
-458 KB
Binary file not shown.

src/pages/About.jsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Footer from "../layout/Footer.jsx";
33
import Section from "../layout/Section.jsx";
44
import style from "../style/index.js";
55
import PageHeader from "../layout/PageHeader.jsx";
6-
import { founders, staff, advisors } from "../data/staff.js";
6+
import { founders, staff, contractors, advisors } from "../data/staff.js";
77
import useDisplayCategory from "../hooks/useDisplayCategory.js";
88
import { Link, useLocation } from "react-router-dom";
99
import { Helmet } from "react-helmet";
@@ -51,6 +51,12 @@ export default function About() {
5151
return <InvertedBio key={index} member={staff[member]} />;
5252
})}
5353
</Section>
54+
<Section>
55+
<h2>Contractors</h2>
56+
{Object.keys(contractors).map((member, index) => {
57+
return <Bio key={index} member={contractors[member]} />;
58+
})}
59+
</Section>
5460
<div style={{ display: "none" }}>
5561
<Section backgroundColor={style.colors.BLUE}>
5662
<h2 style={{ color: style.colors.WHITE }}>Advisory board</h2>

0 commit comments

Comments
 (0)