-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b24ecce
commit 2a22a99
Showing
2 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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' }, | ||
] | ||
} | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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> |