aboutsummaryrefslogtreecommitdiff
path: root/communities/red-right-hand/vitepress/markdown/team.md
blob: a9d7466f19db25b8687d9544375a57a5c37f6440 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
layout: page
---

<script setup>
import {
  VPTeamPage,
  VPTeamPageTitle,
  VPTeamMembers
} from 'vitepress/theme';

const members = [
  {
    avatar: 'https://robertsspaceindustries.com/media/7lw2abfargyozr/heap_infobox/Ezgif-4-6671ae942950.png',
    name: 'bayla',
    desc: "Project Manager",
    title: "Admiral",
    org: 'Red Right Hand',
    orgLink: 'https://robertsspaceindustries.com/orgs/UNNAMEDGRP',
  }
];
</script>

<VPTeamPage>
  <VPTeamPageTitle>
    <template #title>
      Our Team
    </template>
    <template #lead>
      The development of this site is guided by an international team, some of whom are listed below. We are always looking for new members to join our ranks, so if you are interested in contributing, please reach out to us on our Discord server.
    </template>
  </VPTeamPageTitle>
  <VPTeamMembers :members />
</VPTeamPage>