From 519f7debe176d99f464a96240842c303d8ec5e57 Mon Sep 17 00:00:00 2001 From: Kia King Ishii Date: Mon, 11 Jul 2022 21:59:03 +0900 Subject: [PATCH] docs: add team page (#8720) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Shinigami Co-authored-by: patak Co-authored-by: Bjorn Lu Co-authored-by: 翠 / green Co-authored-by: Alec Larson <1925840+aleclarson@users.noreply.github.com> Co-authored-by: Anthony Fu Co-authored-by: ygj6 <7699524+ygj6@users.noreply.github.com> --- docs/.vitepress/config.ts | 51 +++++++------ docs/_data/team.js | 152 ++++++++++++++++++++++++++++++++++++++ docs/team.md | 36 +++++++++ 3 files changed, 216 insertions(+), 23 deletions(-) create mode 100644 docs/_data/team.js create mode 100644 docs/team.md diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts index 3f7762f2cdd2c4..71ee79a150e015 100644 --- a/docs/.vitepress/config.ts +++ b/docs/.vitepress/config.ts @@ -72,31 +72,36 @@ export default defineConfig({ { text: 'Config', link: '/config/', activeMatch: '/config/' }, { text: 'Plugins', link: '/plugins/', activeMatch: '/plugins/' }, { - text: 'Links', + text: 'Resources', items: [ + { text: 'Team', link: '/team' }, { - text: 'Twitter', - link: 'https://twitter.com/vite_js' - }, - { - text: 'Discord Chat', - link: 'https://chat.vitejs.dev' - }, - { - text: 'Awesome Vite', - link: 'https://github.com/vitejs/awesome-vite' - }, - { - text: 'DEV Community', - link: 'https://dev.to/t/vite' - }, - { - text: 'Rollup Plugins Compat', - link: 'https://vite-rollup-plugins.patak.dev/' - }, - { - text: 'Changelog', - link: 'https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md' + items: [ + { + text: 'Twitter', + link: 'https://twitter.com/vite_js' + }, + { + text: 'Discord Chat', + link: 'https://chat.vitejs.dev' + }, + { + text: 'Awesome Vite', + link: 'https://github.com/vitejs/awesome-vite' + }, + { + text: 'DEV Community', + link: 'https://dev.to/t/vite' + }, + { + text: 'Rollup Plugins Compat', + link: 'https://vite-rollup-plugins.patak.dev/' + }, + { + text: 'Changelog', + link: 'https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md' + } + ] } ] }, diff --git a/docs/_data/team.js b/docs/_data/team.js new file mode 100644 index 00000000000000..43b56ad5bf481b --- /dev/null +++ b/docs/_data/team.js @@ -0,0 +1,152 @@ +export const core = [ + { + avatar: 'https://www.github.com/yyx990803.png', + name: 'Evan You', + title: 'Creator', + org: 'Vue.js', + orgLink: 'https://vuejs.org/', + desc: 'Husband, father of two, independent open source developer.', + links: [ + { icon: 'github', link: 'https://github.com/yyx990803' }, + { icon: 'twitter', link: 'https://twitter.com/youyuxi' } + ], + sponsor: 'https://github.com/sponsors/yyx990803' + }, + { + avatar: 'https://www.github.com/patak-dev.png', + name: 'Patak', + title: 'A collaborative being', + org: 'StackBlitz', + orgLink: 'https://stackblitz.com/', + desc: 'Core team member of Vite. Team member of Vue.', + links: [ + { icon: 'github', link: 'https://github.com/patak-dev' }, + { icon: 'twitter', link: 'https://twitter.com/patak_dev' } + ], + sponsor: 'https://github.com/sponsors/patak-dev' + }, + { + avatar: 'https://www.github.com/antfu.png', + name: 'Anthony Fu', + title: 'A fanatical open sourceror', + org: 'NuxtLabs', + orgLink: 'https://nuxtlabs.com/', + desc: 'Core team member of Vite & Vue. Working at NuxtLabs.', + links: [ + { icon: 'github', link: 'https://github.com/antfu' }, + { icon: 'twitter', link: 'https://twitter.com/antfu7' } + ], + sponsor: 'https://github.com/sponsors/antfu' + }, + { + avatar: 'https://github.com/sodatea.png', + name: 'Haoqun Jiang', + title: 'Developer', + org: 'Vue.js', + orgLink: 'https://vuejs.org/', + desc: 'Vite/Vite core team member. Full-time open sourcerer.', + links: [ + { icon: 'github', link: 'https://github.com/sodatea' }, + { icon: 'twitter', link: 'https://twitter.com/haoqunjiang' } + ], + sponsor: 'https://github.com/sponsors/sodatea' + }, + { + avatar: 'https://github.com/Shinigami92.png', + name: 'Shinigami', + title: 'Maintainer', + org: 'Faker', + orgLink: 'https://fakerjs.dev', + desc: 'Passionate TypeScript enthusiast working extensively with Vue SPA and pug.', + links: [ + { icon: 'github', link: 'https://github.com/Shinigami92' }, + { icon: 'twitter', link: 'https://twitter.com/Shini_92' } + ], + sponsor: 'https://github.com/sponsors/Shinigami92' + }, + { + avatar: 'https://i.imgur.com/KMed6rQ.jpeg', + name: 'Alec Larson', + title: 'Entrepreneur', + desc: 'Dabbling in social ecommerce, meta frameworks, and board games', + links: [ + { icon: 'github', link: 'https://github.com/aleclarson' }, + { icon: 'twitter', link: 'https://twitter.com/retropragma' } + ], + sponsor: 'https://github.com/sponsors/aleclarson' + }, + { + avatar: 'https://github.com/bluwy.png', + name: 'Bjorn Lu', + title: 'Frontend Developer', + desc: 'Svelte and Vite team member. Something something opinions.', + links: [ + { icon: 'github', link: 'https://github.com/bluwy' }, + { icon: 'twitter', link: 'https://twitter.com/bluwyoo' } + ], + sponsor: 'https://bjornlu.com/sponsor' + }, + { + avatar: 'https://github.com/poyoho.png', + name: 'yoho', + title: 'Frontend Developer', + desc: 'Frontend. Vite team member.', + links: [ + { icon: 'github', link: 'https://github.com/poyoho' }, + { icon: 'twitter', link: 'https://twitter.com/yoho_po' } + ] + }, + { + avatar: 'https://github.com/sapphi-red.png', + name: 'green', + title: 'Web Developer', + desc: 'Vite team member. Call me sapphi or green or midori ;)', + links: [ + { icon: 'github', link: 'https://github.com/sapphi-red' }, + { icon: 'twitter', link: 'https://twitter.com/sapphi_red' } + ], + sponsor: 'https://github.com/sponsors/sapphi-red' + }, + { + avatar: 'https://github.com/ygj6.png', + name: 'ygj6', + title: 'Developer', + desc: 'Web Developer. Vue & Vite team member', + links: [ + { icon: 'github', link: 'https://github.com/ygj6' }, + { icon: 'twitter', link: 'https://twitter.com/ygj_66' } + ] + }, + { + avatar: 'https://github.com/Niputi.png', + name: 'Niputi', + title: 'Developer', + org: 'Computershare Denmark', + desc: 'weeb/javascript lover.', + links: [ + { icon: 'github', link: 'https://github.com/Niputi' }, + { icon: 'twitter', link: 'https://twitter.com/Niputi_' } + ] + } +] + +export const emeriti = [ + { + avatar: 'https://github.com/underfin.png', + name: 'underfin', + title: 'Developer', + links: [{ icon: 'github', link: 'https://github.com/underfin' }] + }, + { + avatar: 'https://github.com/GrygrFlzr.png', + name: 'GrygrFlzr', + title: 'Developer', + links: [{ icon: 'github', link: 'https://github.com/GrygrFlzr' }] + }, + { + avatar: 'https://github.com/nihalgonsalves.png', + name: 'Nihal Gonsalves', + title: 'Senior Software Engineer', + links: [{ icon: 'github', link: 'https://github.com/nihalgonsalves' }] + } +] diff --git a/docs/team.md b/docs/team.md new file mode 100644 index 00000000000000..fdd2cb822e9afa --- /dev/null +++ b/docs/team.md @@ -0,0 +1,36 @@ +--- +layout: page +title: Meet the Team +description: The development of Vite is guided by an international team. +--- + + + + + + + + + + + + + + +