You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.0 KiB
38 lines
1.0 KiB
1 year ago
|
---
|
||
|
layout: page
|
||
|
|
||
|
title: The Team
|
||
|
---
|
||
|
|
||
|
<script setup>
|
||
|
import { VPTeamPage, VPTeamPageTitle, VPTeamPageSection, VPTeamMembers } from "vitepress/theme";
|
||
|
import { projectManagers, teamMembers } from "./_data/team";
|
||
|
</script>
|
||
|
|
||
|
<VPTeamPage>
|
||
|
<VPTeamPageTitle>
|
||
|
<template #title>The Team</template>
|
||
|
<template #lead>
|
||
|
The development of Hestia is guided by an international team, some of whom have chosen to be featured below.
|
||
|
</template>
|
||
|
</VPTeamPageTitle>
|
||
|
<VPTeamPageSection>
|
||
|
<template #title>Project Managers</template>
|
||
|
<template #members>
|
||
|
<VPTeamMembers :members="projectManagers" />
|
||
|
</template>
|
||
|
</VPTeamPageSection>
|
||
|
<VPTeamPageSection>
|
||
|
<template #title>Team Members</template>
|
||
|
<template #members>
|
||
|
<VPTeamMembers :members="teamMembers" />
|
||
|
</template>
|
||
|
</VPTeamPageSection>
|
||
|
<!-- <VPTeamPageSection>
|
||
|
<template #title>Contributors ❤️</template>
|
||
|
<template #members>
|
||
|
<VPTeamMembers size="small" :members="featuredContributors" />
|
||
|
</template>
|
||
|
</VPTeamPageSection> -->
|
||
|
</VPTeamPage>
|