2024-06-05 16:42:57 -04:00
|
|
|
---
|
|
|
|
layout: page
|
|
|
|
title: "About"
|
|
|
|
sidebar: false
|
|
|
|
prev: false
|
|
|
|
next: false
|
|
|
|
---
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
import {
|
|
|
|
VPTeamPage,
|
|
|
|
VPTeamPageTitle,
|
|
|
|
VPTeamMembers
|
|
|
|
} from 'vitepress/theme'
|
|
|
|
|
|
|
|
const members = [
|
|
|
|
{
|
2024-06-08 11:27:05 -04:00
|
|
|
avatar: 'https://git.frogmc.dev/owlsys.png',
|
2024-06-05 16:42:57 -04:00
|
|
|
name: 'Owlsys',
|
|
|
|
title: 'Developer',
|
|
|
|
links: [
|
|
|
|
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2024-06-08 11:27:05 -04:00
|
|
|
avatar: 'https://git.frogmc.dev/kode.png',
|
2024-06-05 16:42:57 -04:00
|
|
|
name: 'TheKodeToad',
|
|
|
|
title: 'Developer',
|
|
|
|
links: [
|
|
|
|
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2024-06-08 11:27:05 -04:00
|
|
|
avatar: 'https://git.frogmc.dev/ecorous.png',
|
2024-06-05 16:42:57 -04:00
|
|
|
name: 'Ecorous',
|
|
|
|
title: 'Sysadmin',
|
|
|
|
links: [
|
|
|
|
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2024-06-08 11:27:05 -04:00
|
|
|
avatar: 'https://git.frogmc.dev/ampflower.png',
|
2024-06-05 16:42:57 -04:00
|
|
|
name: 'Ampflower',
|
|
|
|
title: 'Developer',
|
|
|
|
links: [
|
|
|
|
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2024-06-08 11:27:05 -04:00
|
|
|
avatar: 'https://git.frogmc.dev/maemachinebroke.png',
|
2024-06-05 16:42:57 -04:00
|
|
|
name: 'MaeMachineBroke',
|
|
|
|
title: 'Moderator',
|
|
|
|
links: [
|
|
|
|
|
2024-08-04 06:21:17 -04:00
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
avatar: 'https://git.frogmc.dev/ender.png',
|
|
|
|
name: 'Ender',
|
|
|
|
title: 'Developer',
|
|
|
|
links: [
|
|
|
|
|
2024-06-05 16:42:57 -04:00
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<VPTeamPage>
|
|
|
|
<VPTeamPageTitle>
|
|
|
|
<template #title>
|
|
|
|
About FrogMC
|
|
|
|
</template>
|
|
|
|
<template #lead>
|
|
|
|
FrogMC is developed by a small group of volunteers, some of which are listed below.
|
|
|
|
</template>
|
|
|
|
</VPTeamPageTitle>
|
|
|
|
<VPTeamMembers
|
|
|
|
:members="members"
|
|
|
|
/>
|
2024-08-04 06:21:17 -04:00
|
|
|
</VPTeamPage>
|