PhyrePanel-mirror/docs/team.md

38 lines
995 B
Markdown
Raw Normal View History

2024-05-17 17:48:55 +00:00
---
2024-05-17 18:49:43 +00:00
layout: page
sidebar: false
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>
2024-05-17 18:49:43 +00:00
<style scoped>
.VPTeamPage {
margin-bottom: 96px;
}
</style>
<div class="VPTeamPage">
2024-05-17 17:48:55 +00:00
<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> -->
2024-05-17 18:49:43 +00:00
</div>