mirror of
https://github.com/vitejs/vite.git
synced 2024-11-22 07:09:05 +00:00
519f7debe1
Co-authored-by: Shinigami <chrissi92@hotmail.de> Co-authored-by: patak <matias.capeletto@gmail.com> Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com> Co-authored-by: 翠 / green <green@sapphi.red> Co-authored-by: Alec Larson <1925840+aleclarson@users.noreply.github.com> Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com> Co-authored-by: ygj6 <7699524+ygj6@users.noreply.github.com>
37 lines
931 B
Markdown
37 lines
931 B
Markdown
---
|
|
layout: page
|
|
title: Meet the Team
|
|
description: The development of Vite is guided by an international team.
|
|
---
|
|
|
|
<script setup>
|
|
import {
|
|
VPTeamPage,
|
|
VPTeamPageTitle,
|
|
VPTeamPageSection,
|
|
VPTeamMembers
|
|
} from 'vitepress/theme'
|
|
import { core, emeriti } from './_data/team'
|
|
</script>
|
|
|
|
<VPTeamPage>
|
|
<VPTeamPageTitle>
|
|
<template #title>Meet the Team</template>
|
|
<template #lead>
|
|
The development of Vite is guided by an international team, some of whom
|
|
have chosen to be featured below.
|
|
</template>
|
|
</VPTeamPageTitle>
|
|
<VPTeamMembers :members="core" />
|
|
<VPTeamPageSection>
|
|
<template #title>Team Emeriti</template>
|
|
<template #lead>
|
|
Here we honor some no-longer-active team members who have made valuable
|
|
contributions in the past.
|
|
</template>
|
|
<template #members>
|
|
<VPTeamMembers size="small" :members="emeriti" />
|
|
</template>
|
|
</VPTeamPageSection>
|
|
</VPTeamPage>
|