PhyrePanel-mirror/docs/team.md

30 lines
910 B
Markdown
Raw Normal View History

2024-05-17 17:48:55 +00:00
---
2024-05-17 18:43:56 +00:00
layout: clean
2024-05-17 17:48:55 +00:00
title: The Team
---
<script setup>
import { VPTeamPage, VPTeamPageTitle, VPTeamPageSection, VPTeamMembers } from "vitepress/theme";
import { teamMembers } from "./_data/team";
</script>
<VPTeamPage>
<VPTeamPageTitle>
<template #title>The Team</template>
<template #lead>
2024-05-17 17:53:36 +00:00
The team behind PhyrePanel is a small group of passionate developers who are dedicated to making the best open source web control panel for Linux servers.
2024-05-17 17:48:55 +00:00
</template>
</VPTeamPageTitle>
<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>