From 8731184658b8d3205179197db579442352201200 Mon Sep 17 00:00:00 2001
From: mdong1909 <220303712+mdong1909@users.noreply.github.com>
Date: Tue, 21 Apr 2026 13:02:03 +0800
Subject: [PATCH 1/5] docs(feat): add team page
---
docs/.vitepress/config.mts | 1 +
docs/_data/team.js | 87 ++++++++++++++++++++++++++++++++++++++
docs/package.json | 5 ++-
docs/team.md | 35 +++++++++++++++
4 files changed, 126 insertions(+), 2 deletions(-)
create mode 100644 docs/_data/team.js
create mode 100644 docs/team.md
diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts
index aa04051c9c..b851c467d6 100644
--- a/docs/.vitepress/config.mts
+++ b/docs/.vitepress/config.mts
@@ -139,6 +139,7 @@ export default extendConfig(
{
text: 'Resources',
items: [
+ { text: 'Team', link: '/team' },
{ text: 'GitHub', link: 'https://github.com/voidzero-dev/vite-plus' },
{ text: 'Releases', link: 'https://github.com/voidzero-dev/vite-plus/releases' },
{
diff --git a/docs/_data/team.js b/docs/_data/team.js
new file mode 100644
index 0000000000..5297342178
--- /dev/null
+++ b/docs/_data/team.js
@@ -0,0 +1,87 @@
+/** @type {import('@voidzero-dev/vitepress-theme').TeamMember[]} */
+export const core = [
+ {
+ avatar: 'https://github.com/fengmk2.png',
+ name: 'MK',
+ links: [{ icon: 'github', link: 'https://github.com/fengmk2' },
+ { icon: 'x', link: 'https://x.com/fengmk2' },
+ ],
+ },
+ {
+ avatar: 'https://github.com/branchseer.png',
+ name: 'Wang Chi',
+ links: [{ icon: 'github', link: 'https://github.com/branchseer' }],
+ },
+ {
+ avatar: 'https://github.com/Brooooooklyn.png',
+ name: 'Long Yinan',
+ links: [
+ { icon: 'github', link: 'https://github.com/Brooooooklyn' },
+ { icon: 'x', link: 'https://x.com/Brooooook_lyn' },
+ ],
+ },
+ {
+ avatar: 'https://github.com/cpojer.png',
+ name: 'Christoph Nakazawa',
+ links: [
+ { icon: 'github', link: 'https://github.com/cpojer' },
+ { icon: 'x', link: 'https://x.com/cpojer' },
+ { icon: 'bluesky', link: 'https://bsky.app/profile/christoph.nkzw.tech' },
+ ],
+ },
+ {
+ avatar: 'https://github.com/TheAlexLichter.png',
+ name: 'Alexander Lichter',
+ links: [
+ { icon: 'github', link: 'https://github.com/TheAlexLichter' },
+ { icon: 'x', link: 'https://x.com/TheAlexLichter' },
+ { icon: 'bluesky', link: 'https://bsky.app/profile/thealexlichter.com' },
+ ],
+ },
+ {
+ avatar: 'https://github.com/mdong1909.png',
+ name: 'Michael Dong',
+ links: [
+ { icon: 'github', link: 'https://github.com/mdong1909' },
+ { icon: 'x', link: 'https://x.com/mdong1909' },
+ { icon: 'linkedin', link: 'https://www.linkedin.com/in/michael-d-612b5b50/' },
+ ],
+ },
+ {
+ avatar: 'https://github.com/kazupon.png',
+ name: 'kazupon',
+ links: [
+ { icon: 'github', link: 'https://github.com/kazupon' },
+ { icon: 'x', link: 'https://x.com/kazu_pon' },
+ { icon: 'bluesky', link: 'https://bsky.app/profile/kazupon.dev' },
+ ],
+ },
+ {
+ avatar: 'https://github.com/ubugeeei.png',
+ name: 'ubugeeei',
+ links: [
+ { icon: 'github', link: 'https://github.com/ubugeeei' },
+ { icon: 'x', link: 'https://x.com/ubugeeei' },
+ ],
+ },
+ {
+ avatar: 'https://github.com/naokihaba.png',
+ name: 'naokihaba',
+ links: [
+ { icon: 'github', link: 'https://github.com/naokihaba' },
+ { icon: 'x', link: 'https://x.com/naokihaba' },
+ { icon: 'bluesky', link: 'https://bsky.app/profile/naokihaba.com' },
+ ],
+ },
+ {
+ avatar: 'https://github.com/jong-kyung.png',
+ name: 'JongKyung Lee',
+ links: [
+ { icon: 'github', link: 'https://github.com/jong-kyung' },
+ { icon: 'linkedin', link: 'https://www.linkedin.com/in/jong-kyung' },
+ ],
+ },
+]
+
+/** @type {import('@voidzero-dev/vitepress-theme').TeamMember[]} */
+export const emeriti = []
diff --git a/docs/package.json b/docs/package.json
index 1e9c6e1194..aabed922d1 100644
--- a/docs/package.json
+++ b/docs/package.json
@@ -21,5 +21,6 @@
"oxc-minify": "^0.120.0",
"tailwindcss": "^4.1.18",
"vitepress": "2.0.0-alpha.15"
- }
-}
+ },
+ "packageManager": "pnpm@10.33.0"
+}
\ No newline at end of file
diff --git a/docs/team.md b/docs/team.md
new file mode 100644
index 0000000000..b28e4e9878
--- /dev/null
+++ b/docs/team.md
@@ -0,0 +1,35 @@
+---
+layout: page
+title: Meet the Team
+description: The development of Vite+ is guided by an international team.
+---
+
+
+
+
+
+ Meet the Team
+
+ The team members who work on Vite+ and are responsible for its development, maintenance, and community engagement.
+
+
+
+
+
From 03f1cdf79369278d070f4f273f16a315d9ec04bf Mon Sep 17 00:00:00 2001
From: mdong1909 <220303712+mdong1909@users.noreply.github.com>
Date: Tue, 21 Apr 2026 13:03:49 +0800
Subject: [PATCH 2/5] fix typo
---
docs/team.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/team.md b/docs/team.md
index b28e4e9878..e02f5a6fdf 100644
--- a/docs/team.md
+++ b/docs/team.md
@@ -11,7 +11,7 @@ import {
VPTeamPageSection,
VPTeamMembers
} from '@voidzero-dev/vitepress-theme'
-import { core } from './_data/team'vp
+import { core } from './_data/team'
From c02a2f4f0738ab5219ab45439c33b8224348ff6e Mon Sep 17 00:00:00 2001
From: mdong1909 <220303712+mdong1909@users.noreply.github.com>
Date: Tue, 21 Apr 2026 13:55:03 +0800
Subject: [PATCH 3/5] add nekomoyi & stefan
---
docs/_data/team.js | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/docs/_data/team.js b/docs/_data/team.js
index 5297342178..410086f677 100644
--- a/docs/_data/team.js
+++ b/docs/_data/team.js
@@ -64,6 +64,20 @@ export const core = [
{ icon: 'x', link: 'https://x.com/ubugeeei' },
],
},
+ {
+ avatar: 'https://github.com/nekomoyi.png',
+ name: 'nekomoyi',
+ links: [
+ { icon: 'github', link: 'https://github.com/nekomoyi' },
+ ],
+ },
+ {
+ avatar: 'https://github.com/HaasStefan.png',
+ name: 'Stefan Haas',
+ links: [
+ { icon: 'github', link: 'https://github.com/HaasStefan' },
+ ],
+ },
{
avatar: 'https://github.com/naokihaba.png',
name: 'naokihaba',
From ef89592bc70d155d9069c776f849322d5ee4be11 Mon Sep 17 00:00:00 2001
From: mdong1909 <220303712+mdong1909@users.noreply.github.com>
Date: Tue, 21 Apr 2026 14:41:12 +0800
Subject: [PATCH 4/5] update stefan
---
docs/_data/team.js | 2 ++
1 file changed, 2 insertions(+)
diff --git a/docs/_data/team.js b/docs/_data/team.js
index 410086f677..e93a38fe29 100644
--- a/docs/_data/team.js
+++ b/docs/_data/team.js
@@ -76,6 +76,8 @@ export const core = [
name: 'Stefan Haas',
links: [
{ icon: 'github', link: 'https://github.com/HaasStefan' },
+ { icon: 'x', link: 'https://x.com/StefanvHaas' },
+ { icon: 'linkedin', link: 'https://www.linkedin.com/in/stefan-haas-angular' },
],
},
{
From 219fc3c0504cfc49e94a1de3bbf168f15397de92 Mon Sep 17 00:00:00 2001
From: mdong1909 <220303712+mdong1909@users.noreply.github.com>
Date: Tue, 21 Apr 2026 16:35:19 +0800
Subject: [PATCH 5/5] add cam & yuji
---
docs/_data/team.js | 21 ++++++++++++++++++++-
1 file changed, 20 insertions(+), 1 deletion(-)
diff --git a/docs/_data/team.js b/docs/_data/team.js
index e93a38fe29..1ec6b97403 100644
--- a/docs/_data/team.js
+++ b/docs/_data/team.js
@@ -10,7 +10,10 @@ export const core = [
{
avatar: 'https://github.com/branchseer.png',
name: 'Wang Chi',
- links: [{ icon: 'github', link: 'https://github.com/branchseer' }],
+ links: [
+ { icon: 'github', link: 'https://github.com/branchseer' },
+ { icon: 'x', link: 'https://x.com/branchseer' }
+ ],
},
{
avatar: 'https://github.com/Brooooooklyn.png',
@@ -38,6 +41,22 @@ export const core = [
{ icon: 'bluesky', link: 'https://bsky.app/profile/thealexlichter.com' },
],
},
+ {
+ avatar: 'https://github.com/camc314.png',
+ name: 'Cameron Clark',
+ links: [
+ { icon: 'github', link: 'https://github.com/camc314' },
+ { icon: 'x', link: 'https://x.com/cameron_C2' },
+ ],
+ },
+ {
+ avatar: 'https://github.com/leaysgur.png',
+ name: 'Yuji Sugiura',
+ links: [
+ { icon: 'github', link: 'https://github.com/leaysgur' },
+ { icon: 'x', link: 'https://x.com/leaysgur' },
+ ],
+ },
{
avatar: 'https://github.com/mdong1909.png',
name: 'Michael Dong',