blob: 671719174b3888b01fc4122fe680828c700b8c87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<script setup lang="ts">
import {
VPTeamMembers,
VPTeamPage,
VPTeamPageSection,
VPTeamPageTitle,
} from 'vitepress/theme';
import { contributors, core, emeriti } from './members.json';
</script>
<template>
<VPTeamPage>
<VPTeamPageTitle>
<template #title>Meet the Team</template>
<template #lead>
The development of Faker is guided by an international team, some of
whom have chosen to be featured below.
</template>
</VPTeamPageTitle>
<VPTeamMembers :members="core" />
<VPTeamPageSection>
<template #title>Team Contributors</template>
<template #members>
<VPTeamMembers :members="contributors" />
</template>
</VPTeamPageSection>
<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>
</template>
|