Skip to content

Commit

Permalink
Core team!
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Oct 7, 2024
1 parent 2ddddfc commit 0aaaf66
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 0 deletions.
62 changes: 62 additions & 0 deletions components/TeamMembers.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
import Link from "next/link";

const members = [
{
name: "kdy1 / Donny",
link: "https://github.com/kdy1",
github: "kdy1",
role: "Lead Maintainer",
},
{
name: "OJ Kwon",
link: "https://github.com/kwonoj",
github: "kwonoj",
role: "Core Team",
},
{
name: "magic-akari",
link: "https://github.com/magic-akari",
github: "magic-akari",
role: "Core Team",
},
{
name: "Austaras",
link: "https://github.com/Austaras",
github: "Austaras",
role: "Core Team",
},
{
name: "CPunisher",
link: "https://github.com/CPunisher",
github: "CPunisher",
role: "Core Team",
},
{
name: "LongYinan",
link: "https://github.com/Brooooooklyn",
github: "Brooooooklyn",
role: "Maintainer of @swc-node/*",
},
];

export default function TeamMembers() {
return (
<div className="grid grid-cols-3 gap-4 mt-4">
{members.map((member, index) => {
return (
<Link href={`https://github.com/${member.github}`} key={index}>
<div className="flex flex-col items-center">
<img
src={`https://github.com/${member.github}.png`}
alt={`${member.name} avatar`}
className="w-16 h-16 rounded-full"
/>
<div className="font-bold text-center">{member.name}</div>
<div>{member.role}</div>
</div>
</Link>
);
})}
</div>
);
}
1 change: 1 addition & 0 deletions pages/docs/_meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"usage": "Usage",
"configuration": "Configuration",
"plugin": "Plugin",
"team": "The Team",
"sponsors": "Sponsors",
"benchmarks": "Benchmarks",
"references": "API References",
Expand Down
7 changes: 7 additions & 0 deletions pages/docs/team.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import TeamMembers from "../../components/TeamMembers";

# The Team

SWC is a community-driven project.

<TeamMembers/>

0 comments on commit 0aaaf66

Please sign in to comment.