This commit is contained in:
Bozhidar 2024-05-17 20:48:55 +03:00
parent b24ecce9cf
commit 2a22a991e4
2 changed files with 61 additions and 0 deletions

30
docs/_data/team.js Normal file
View file

@ -0,0 +1,30 @@
/** @type {import("vitepress").DefaultTheme.TeamMember[]} */
const globeIcon = {
svg: '<svg role="img" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><title>Website</title><path stroke-linecap="round" stroke-linejoin="round" d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9" /></svg>',
};
/** @type {import("vitepress").DefaultTheme.TeamMember[]} */
export const teamMembers = [
{
avatar: 'https://avatars.githubusercontent.com/u/50577633?v=4',
name: 'Bozhidar Slaveykov 🇧🇬',
title: 'Developer',
org: 'CloudVision',
orgLink: 'https://phyrepanel.com',
links: [
{ icon: 'github', link: 'https://github.com/bobicloudvision' },
{ icon: 'linkedin', link: 'https://www.linkedin.com/in/bozhidar.slaveykov' },
],
},
{
avatar: 'https://avatars.githubusercontent.com/u/5698247?v=4',
name: 'Peter Ivanov 🇧🇬',
title: 'Developer',
org: 'Microweber',
orgLink: 'https://microweber.com.com',
links: [
{ icon: 'github', link: 'https://github.com/peter-mw' },
]
}
];

31
docs/team.md Normal file
View file

@ -0,0 +1,31 @@
---
layout: page
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>
The development of Phyre Panel is guided by an international team, some of whom have chosen to be featured below.
</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>