Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add Staff to About page #5

Merged
merged 4 commits into from
Mar 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"Faneuil",
"Farrelly",
"fontsource",
"Hadley",
"Harborside",
"Harborwalk",
"Inngest",
Expand All @@ -26,12 +27,16 @@
"Mariah",
"MBTA",
"mitropoulos",
"Mulroy",
"Murg",
"plone",
"Prakash",
"Sahana",
"Simons",
"squiggleconf",
"tseslint",
"vercel",
"Vitullo",
"WASI",
"WCAG",
"wght-italic"
Expand Down
Binary file modified src/assets/.DS_Store
Binary file not shown.
Binary file added src/assets/avatars/.DS_Store
Binary file not shown.
Binary file added src/assets/avatars/carl-vitullo.webp
Binary file not shown.
Binary file added src/assets/avatars/dillon-mulroy.webp
Binary file not shown.
Binary file added src/assets/avatars/hadley-garrett.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/avatars/katharine-mitropoulos.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/avatars/mariah-goldberg.webp
Binary file not shown.
Binary file added src/assets/avatars/sahana-j-prakash.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/components/BioLinks.astro
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ interface Props {
export interface BioLinksPlatforms {
bluesky?: string | null;
github?: string | null;
instagram?: string | null;
linkedin?: string | null;
mastodon?: string | null;
twitch?: string | null;
website?: string | null;
youtube?: string | null;
}
Expand Down
2 changes: 2 additions & 0 deletions src/components/Bios.astro
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ interface Props {
margin-top: 2rem;
row-gap: 2rem;
text-align: center;
margin: 2rem auto;
max-width: 35rem;
width: 100%;
}
</style>
77 changes: 64 additions & 13 deletions src/pages/about.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
---
import joshGoldberg from "~/assets/avatars/josh-goldberg.png";
import carlVitullo from "~/assets/avatars/carl-vitullo.webp";
import dillonMulroy from "~/assets/avatars/dillon-mulroy.webp";
import dimitriMitropoulos from "~/assets/avatars/dimitri-mitropoulos.jpg";
import hadleyGarrett from "~/assets/avatars/hadley-garrett.jpg";
import joshGoldberg from "~/assets/avatars/josh-goldberg.png";
import katharineMitropoulos from "~/assets/avatars/katharine-mitropoulos.jpg";
import mariahGoldberg from "~/assets/avatars/mariah-goldberg.webp";
import sahanaJPrakash from "~/assets/avatars/sahana-j-prakash.jpg";
import bostonTSClub from "~/assets/logos/boston-ts-club.svg";
import michiganTypeScript from "~/assets/logos/michigan-typescript.png";
import { Props as BioProps } from "~/components/Bio.astro";
Expand All @@ -22,6 +28,35 @@ const biosSquiggleTools: BioProps[] = [
name: "Boston TS Club",
photo: bostonTSClub,
},
{
links: {
bluesky: "https://bsky.app/profile/michigantypescript.com",
mastodon: "https://fosstodon.org/@MichiganTypeScript",
youtube: "https://youtube.com/@MichiganTypeScript",
},
name: "Michigan TypeScript",
photo: michiganTypeScript,
},
];

const biosStaff: BioProps[] = [
{
links: {
bluesky: "https://bsky.app/profile/vcarl.com",
github: "https://github.com/vcarl",
website: "https://vcarl.com",
},
name: "Carl Vitullo",
photo: carlVitullo,
},
{
links: {
github: "https://github.com/dmmulroy",
twitch: "https://twitch.tv/dmmulroy",
},
name: "Dillon Mulroy",
photo: dillonMulroy,
},
{
links: {
github: "https://github.com/dimitropoulos",
Expand All @@ -30,6 +65,13 @@ const biosSquiggleTools: BioProps[] = [
name: "Dimitri Mitropoulos",
photo: dimitriMitropoulos,
},
{
links: {
linkedin: "https://www.linkedin.com/in/hadley-garrett",
},
name: "Hadley Garrett",
photo: hadleyGarrett,
},
{
links: {
bluesky: "https://bsky.app/profile/joshuakgoldberg.com",
Expand All @@ -42,12 +84,25 @@ const biosSquiggleTools: BioProps[] = [
},
{
links: {
bluesky: "https://bsky.app/profile/michigantypescript.com",
mastodon: "https://fosstodon.org/@MichiganTypeScript",
youtube: "https://youtube.com/@MichiganTypeScript",
linkedin: "https://www.linkedin.com/in/katharinemoroney",
},
name: "Michigan TypeScript",
photo: michiganTypeScript,
name: "Katharine Mitropoulos",
photo: katharineMitropoulos,
},
{
links: {
instagram: "https://www.instagram.com/mariahgoldburger",
linkedin: "https://www.linkedin.com/in/mariah-anne-cody",
},
name: "Mariah Goldberg",
photo: mariahGoldberg,
},
{
links: {
linkedin: "https://www.linkedin.com/in/sahanajprakash",
},
name: "Sahana J Prakash",
photo: sahanaJPrakash,
},
];

Expand Down Expand Up @@ -105,14 +160,10 @@ const description = "The SquiggleConf mission and team";

<CommonContent heading="Staff Members">
<BodyText>
SquiggleConf 2025 includes a staff of volunteers who are passionate about
the conference and working through the year.
SquiggleConf 2025 is run by a year-long volunteer team passionate about
the conference and surrounding developer community.
</BodyText>

<br />

<BodyText>
<em class="staff-soon">(staff members bios coming soon!)</em>
</BodyText>
<Bios bios={biosStaff} />
</CommonContent>
</PageLayout>