-
Notifications
You must be signed in to change notification settings - Fork 1
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
72328b1
commit 1ac01f9
Showing
7 changed files
with
145 additions
and
28 deletions.
There are no files selected for viewing
File renamed without changes.
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,112 @@ | ||
<script setup lang="ts"> | ||
import {VPTeamMembers} from 'vitepress/theme'; | ||
const coreMembers = [ | ||
{ | ||
avatar: avatar('JorelAli'), | ||
name: 'JorelAli', | ||
title: 'Creator', | ||
links: [ | ||
githubSocialLink('JorelAli') | ||
] | ||
}, { | ||
avatar: avatar('willkroboth'), | ||
name: 'Will Kroboth', | ||
title: '✨ Special Contributors ✨', | ||
links: [ | ||
githubSocialLink('willkroboth') | ||
] | ||
}, { | ||
avatar: avatar('DerEchtePilz'), | ||
name: 'DerEchtePilz', | ||
title: '✨ Special Contributors ✨', | ||
links: [ | ||
githubSocialLink('DerEchtePilz') | ||
] | ||
} | ||
] | ||
const otherContributorsList = [ | ||
"469512345", | ||
"Sytm", | ||
"MC-XiaoHei", | ||
"Timongcraft", | ||
"Strokkur424", | ||
"AkaGiant", | ||
"Osiris-Team", | ||
"Combustible", | ||
"SB2DD", | ||
"Euphillya", | ||
"CJCrafter", | ||
"Gregzeee", | ||
"powercasgamer", | ||
"agonkolgeci", | ||
"Xemii16", | ||
"Abelkrijgtalles", | ||
"dkim19375", | ||
"misode", | ||
"booky10", | ||
"NextdoorPsycho", | ||
"RedstoneWizard08", | ||
"Kadeluxe", | ||
"EnragedRabisu", | ||
"MatrixTunnel", | ||
"HielkeMinecraft", | ||
"Draycia", | ||
"Minenash", | ||
"Michael-Ziluck", | ||
"portlek" | ||
] | ||
const earlyContributors = [ | ||
"Combustible", | ||
"Draycia", | ||
"HielkeMinecraft", | ||
"Minenash", | ||
"Michael-Ziluck", | ||
"portlek", | ||
"469512345" | ||
] | ||
const otherContributors = otherContributorsList.map(name => { | ||
if (earlyContributors.includes(name)) { | ||
return buildContributor(name, "Early Contributor") | ||
} else { | ||
return buildContributor(name) | ||
} | ||
}) | ||
function avatar(name: string) { | ||
return `https://wsrv.nl/?url=https://www.github.com/${name}.png` | ||
} | ||
function githubSocialLink(name: string) { | ||
return {icon: 'github', link: `https://github.com/${name}`} | ||
} | ||
function buildContributor(name: string, title: string = "Contributor") { | ||
return { | ||
avatar: avatar(name), | ||
name: name, | ||
title: title, | ||
links: [ | ||
githubSocialLink(name) | ||
] | ||
} | ||
} | ||
</script> | ||
|
||
<template> | ||
<div> | ||
<br/> | ||
<h1>Brought to you by</h1> | ||
<VPTeamMembers size="medium" :members="coreMembers"/> | ||
<h3>Other Contributors</h3> | ||
<VPTeamMembers size="small" :members="otherContributors"/> | ||
</div> | ||
</template> | ||
|
||
<style scoped> | ||
</style> |
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
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
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
2 changes: 1 addition & 1 deletion
2
...epress/theme/components/PluginTabsTab.vue → docs/.vitepress/theme/tabs/PluginTabsTab.vue
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
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