123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375 |
- <script setup lang="ts">
- import { defineAsyncComponent, ref } from "vue";
- const MainHeader = defineAsyncComponent(
- () => import("@/components/MainHeader.vue")
- );
- const MainFooter = defineAsyncComponent(
- () => import("@/components/MainFooter.vue")
- );
- const ProfilePicture = defineAsyncComponent(
- () => import("@/components/ProfilePicture.vue")
- );
- const currentTeam = ref([
- {
- name: "Kristian Vos",
- bio: "Co-Founder, Owner, Lead Developer, System Admin and QA Tester.",
- projects: [
- "MusareMeteor",
- "MusareReact",
- "MusareNode",
- "MusareStatus",
- "MusareTranslation",
- "aw-watcher-musare",
- "lofig"
- ],
- active: "Sept 2015 - present",
- github: "KrisVos130",
- link: "https://kvos.dev",
- avatar: {
- type: "text",
- color: "orange"
- }
- },
- {
- name: "Owen Diffey",
- bio: "Developer, Designer, System Admin and QA Tester. Previously Owner and Project Manager.",
- projects: ["MusareMeteor", "MusareReact", "MusareNode", "vue-roaster"],
- active: "Feb 2016 - present",
- github: "odiffey",
- link: "https://diffey.dev",
- avatar: {
- type: "text",
- color: "purple"
- }
- }
- ]);
- const previousTeam = ref([
- {
- name: "Jonathan Graham",
- bio: "Lead Developer, Designer and QA Tester.",
- projects: [
- "MusareMeteor",
- "MusareReact",
- "MusareNode",
- "vue-roaster",
- "lofig"
- ],
- active: "Aug 2016 - Mar 2022",
- github: "jonathan-grah",
- link: "https://jgraham.dev"
- },
- {
- name: "Akira Laine",
- bio: "Co-Founder, Lead Developer, Designer and QA Tester.",
- projects: ["MusareMeteor"],
- active: "Sept 2015 - Feb 2016",
- github: "darthmeme",
- link: "https://github.com/AkiraLaine"
- },
- {
- name: "Cameron Kline",
- bio: "Developer, Designer and QA Tester.",
- projects: ["MusareMeteor", "MusareReact", "MusareNode"],
- active: "Aug - Nov 2016",
- github: "luveti",
- link: "https://github.com/luveti"
- },
- {
- name: "Antonio",
- bio: "Official instance Moderator.",
- active: "Unknown"
- },
- {
- name: "Aaron Gildea",
- bio: "Official instance Moderator.",
- active: "Unknown"
- },
- {
- name: "Johannes Andersen",
- bio: "Official instance Moderator and QA Tester.",
- active: "Unknown",
- link: "https://github.com/Johannes-Andersen"
- },
- {
- name: "Adryd",
- bio: "Created Logo and Notes image.",
- active: "May 2016",
- link: "https://github.com/Adryd"
- }
- ]);
- const otherContributors = ref([
- {
- name: "arvind-iyer",
- link: "https://github.com/arvind-iyer"
- },
- {
- name: "CullenIO",
- link: "https://github.com/CullenIO"
- },
- {
- name: "Wesley McCann",
- link: "https://github.com/Septimus"
- }
- ]);
- </script>
- <template>
- <div class="app">
- <page-metadata title="Team" />
- <main-header />
- <div class="container">
- <div class="content-wrapper">
- <h1 class="page-title has-text-centered">Team</h1>
- <h2 class="has-text-centered">Current Team</h2>
- <div class="group">
- <div
- v-for="member in currentTeam"
- :key="member.name"
- class="card"
- >
- <header class="card-header">
- <profile-picture
- :avatar="member.avatar"
- :name="member.name"
- />
- <div>
- <strong>{{ member.name }}</strong>
- <span v-if="member.active"
- >Active: {{ member.active }}</span
- >
- </div>
- <a
- v-if="member.link"
- :href="member.link"
- target="_blank"
- class="material-icons"
- >
- link
- </a>
- </header>
- <div class="card-content">
- <div
- v-if="member.bio"
- class="bio"
- v-html="member.bio"
- ></div>
- <div v-if="member.projects" class="projects">
- <a
- v-for="project in member.projects"
- :key="project"
- class="pill"
- :href="
- 'https://github.com/Musare/' +
- project +
- '/commits?author=' +
- member.github
- "
- target="_blank"
- >
- {{ project }}
- </a>
- </div>
- </div>
- </div>
- </div>
- <h3 class="has-text-centered">Previous Team</h3>
- <div class="group">
- <div
- v-for="member in previousTeam"
- :key="member.name"
- class="card"
- >
- <header class="card-header">
- <profile-picture
- :avatar="{ type: 'text', color: 'grey' }"
- :name="member.name"
- />
- <div>
- <strong>{{ member.name }}</strong>
- <span v-if="member.active"
- >Active: {{ member.active }}</span
- >
- </div>
- <a
- v-if="member.link"
- :href="`${member.link}`"
- target="_blank"
- class="material-icons"
- >
- link
- </a>
- </header>
- <div class="card-content">
- <div
- v-if="member.bio"
- class="bio"
- v-html="member.bio"
- ></div>
- <div v-if="member.projects" class="projects">
- <a
- v-for="project in member.projects"
- :key="project"
- class="pill"
- :href="
- 'https://github.com/Musare/' +
- project +
- '/commits?author=' +
- member.github
- "
- target="_blank"
- >
- {{ project }}
- </a>
- </div>
- </div>
- </div>
- </div>
- <div class="other-contributors">
- <h4>Other Contributors</h4>
- <div>
- <a
- v-for="member in otherContributors"
- :key="member.name"
- :href="member.link"
- target="_blank"
- >
- {{ member.name }}
- </a>
- </div>
- </div>
- </div>
- </div>
- <main-footer />
- </div>
- </template>
- <style lang="less" scoped>
- .night-mode {
- .group .card {
- background-color: var(--dark-grey-3);
- p {
- color: var(--light-grey-2);
- }
- }
- }
- .container {
- max-width: 100% !important;
- }
- a {
- color: var(--primary-color);
- &:hover,
- &:focus {
- filter: brightness(95%);
- }
- }
- h2,
- h3,
- h4 {
- margin: 20px 0;
- }
- h2 {
- margin-top: 50px;
- }
- .other-contributors {
- display: flex;
- flex-direction: column;
- justify-content: center;
- text-align: center;
- margin-bottom: 50px;
- div {
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- a {
- background: var(--white);
- padding: 10px;
- border-radius: @border-radius;
- white-space: nowrap;
- margin-top: 5px;
- font-size: 16px;
- text-align: center;
- box-shadow: @box-shadow;
- &:not(:last-of-type) {
- margin-right: 5px;
- }
- }
- }
- }
- .group {
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- margin: 0 auto;
- max-width: 1260px;
- .card {
- display: inline-flex;
- position: relative;
- background-color: var(--white);
- color: var(--dark-grey);
- flex-direction: column;
- width: calc(100% - 30px);
- max-width: 400px;
- margin: 10px;
- text-align: left;
- border-radius: @border-radius;
- box-shadow: @box-shadow;
- .card-header {
- display: flex;
- position: relative;
- line-height: 22.5px;
- padding: 10px;
- .profile-picture {
- margin-right: 10px;
- width: 45px;
- height: 45px;
- }
- :deep(.profile-picture.using-initials span) {
- font-size: calc(
- 45px / 5 * 2
- ); // 2/5th of .profile-picture height/width
- }
- div {
- display: flex;
- flex-direction: column;
- line-height: 20px;
- margin: auto 0;
- strong {
- font-size: 18px;
- }
- }
- a {
- margin-top: auto;
- margin-bottom: auto;
- margin-left: auto;
- }
- }
- .card-content {
- display: flex;
- flex-direction: column;
- flex-grow: 1;
- padding: 20px;
- .bio {
- font-size: 16px;
- margin-bottom: 10px;
- }
- .projects {
- display: flex;
- flex-wrap: wrap;
- margin-top: auto;
- }
- }
- }
- }
- </style>
|