Team.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  1. <template>
  2. <div class="app">
  3. <metadata title="Team" />
  4. <main-header />
  5. <div class="container">
  6. <div class="content-wrapper">
  7. <h1 class="page-title has-text-centered">Team</h1>
  8. <h2 class="has-text-centered">Current Team</h2>
  9. <div class="group">
  10. <div
  11. v-for="member in currentTeam"
  12. :key="member.name"
  13. class="card"
  14. >
  15. <header class="card-header">
  16. <profile-picture
  17. :avatar="member.avatar"
  18. :name="member.name"
  19. />
  20. <div>
  21. <strong>{{ member.name }}</strong>
  22. <span v-if="member.active"
  23. >Active: {{ member.active }}</span
  24. >
  25. </div>
  26. <a
  27. v-if="member.link"
  28. :href="member.link"
  29. target="_blank"
  30. class="material-icons"
  31. >
  32. link
  33. </a>
  34. </header>
  35. <div class="card-content">
  36. <div
  37. v-if="member.bio"
  38. class="bio"
  39. v-html="member.bio"
  40. ></div>
  41. <div v-if="member.projects" class="projects">
  42. <a
  43. v-for="project in member.projects"
  44. :key="project"
  45. :href="
  46. 'https://github.com/Musare/' +
  47. project +
  48. '/commits?author=' +
  49. member.github
  50. "
  51. target="_blank"
  52. >
  53. {{ project }}
  54. </a>
  55. </div>
  56. </div>
  57. </div>
  58. </div>
  59. <h3 class="has-text-centered">Previous Team</h3>
  60. <div class="group">
  61. <div
  62. v-for="member in previousTeam"
  63. :key="member.name"
  64. class="card"
  65. >
  66. <header class="card-header">
  67. <profile-picture
  68. :avatar="{ type: 'text', color: 'grey' }"
  69. :name="member.name"
  70. />
  71. <div>
  72. <strong>{{ member.name }}</strong>
  73. <span v-if="member.active"
  74. >Active: {{ member.active }}</span
  75. >
  76. </div>
  77. <a
  78. v-if="member.link"
  79. :href="member.link"
  80. target="_blank"
  81. class="material-icons"
  82. >
  83. link
  84. </a>
  85. </header>
  86. <div class="card-content">
  87. <div
  88. v-if="member.bio"
  89. class="bio"
  90. v-html="member.bio"
  91. ></div>
  92. <div v-if="member.projects" class="projects">
  93. <a
  94. v-for="project in member.projects"
  95. :key="project"
  96. :href="
  97. 'https://github.com/Musare/' +
  98. project +
  99. '/commits?author=' +
  100. member.github
  101. "
  102. target="_blank"
  103. >
  104. {{ project }}
  105. </a>
  106. </div>
  107. </div>
  108. </div>
  109. </div>
  110. <div class="other-contributors">
  111. <h4>Other Contributors</h4>
  112. <div>
  113. <a
  114. v-for="member in otherContributors"
  115. :key="member.name"
  116. :href="member.link"
  117. target="_blank"
  118. >
  119. {{ member.name }}
  120. </a>
  121. </div>
  122. </div>
  123. </div>
  124. </div>
  125. <main-footer />
  126. </div>
  127. </template>
  128. <script>
  129. import MainHeader from "@/components/layout/MainHeader.vue";
  130. import MainFooter from "@/components/layout/MainFooter.vue";
  131. import ProfilePicture from "@/components/ProfilePicture.vue";
  132. export default {
  133. components: { MainHeader, MainFooter, ProfilePicture },
  134. data() {
  135. return {
  136. currentTeam: [
  137. {
  138. name: "Kristian Vos",
  139. bio:
  140. "Co-Founder, Owner, Lead Developer, System Admin and QA Tester.",
  141. projects: [
  142. "MusareMeteor",
  143. "MusareReact",
  144. "MusareNode",
  145. "MusareStatus",
  146. "MusareTranslation",
  147. "aw-watcher-musare",
  148. "lofig"
  149. ],
  150. active: "Sept 2015 - present",
  151. github: "KrisVos130",
  152. link: "https://kvos.dev",
  153. avatar: {
  154. type: "text",
  155. color: "orange"
  156. }
  157. },
  158. {
  159. name: "Owen Diffey",
  160. bio:
  161. "Developer, Designer, System Admin and QA Tester. Previously Owner and Project Manager.",
  162. projects: [
  163. "MusareMeteor",
  164. "MusareReact",
  165. "MusareNode",
  166. "vue-roaster"
  167. ],
  168. active: "Feb 2016 - present",
  169. github: "odiffey",
  170. link: "https://diffey.dev",
  171. avatar: {
  172. type: "text",
  173. color: "purple"
  174. }
  175. },
  176. {
  177. name: "Jonathan Graham",
  178. bio: `
  179. <em>Gap-year student based in the UK hoping to study Computer Science at university in September.</em>
  180. <br /><br />
  181. Lead Developer, Designer and QA Tester.
  182. `,
  183. projects: [
  184. "MusareMeteor",
  185. "MusareReact",
  186. "MusareNode",
  187. "vue-roaster",
  188. "lofig"
  189. ],
  190. active: "Aug 2016 - present",
  191. github: "jonathan-grah",
  192. link: "https://jgraham.dev",
  193. avatar: {
  194. type: "text",
  195. color: "blue"
  196. }
  197. }
  198. ],
  199. previousTeam: [
  200. {
  201. name: "Akira Laine",
  202. bio: "Co-Founder, Lead Developer, Designer and QA Tester.",
  203. projects: ["MusareMeteor"],
  204. active: "Sept 2015 - Feb 2016",
  205. github: "darthmeme",
  206. link: "https://github.com/AkiraLaine"
  207. },
  208. {
  209. name: "Cameron Kline",
  210. bio: "Developer, Designer and QA Tester.",
  211. projects: ["MusareMeteor", "MusareReact", "MusareNode"],
  212. active: "Aug - Nov 2016",
  213. github: "luveti",
  214. link: "https://github.com/luveti"
  215. },
  216. {
  217. name: "Antonio",
  218. bio: "Official instance Moderator.",
  219. active: "Unknown"
  220. },
  221. {
  222. name: "Aaron Gildea",
  223. bio: "Official instance Moderator.",
  224. active: "Unknown"
  225. },
  226. {
  227. name: "Johannes Andersen",
  228. bio: "Official instance Moderator and QA Tester.",
  229. active: "Unknown",
  230. link: "https://github.com/Johannes-Andersen"
  231. },
  232. {
  233. name: "Adryd",
  234. bio: "Created Logo and Notes image.",
  235. active: "May 2016",
  236. link: "https://github.com/Adryd"
  237. }
  238. ],
  239. otherContributors: [
  240. {
  241. name: "arvind-iyer",
  242. link: "https://github.com/arvind-iyer"
  243. },
  244. {
  245. name: "CullenIO",
  246. link: "https://github.com/CullenIO"
  247. },
  248. {
  249. name: "Wesley McCann",
  250. link: "https://github.com/Septimus"
  251. }
  252. ]
  253. };
  254. }
  255. };
  256. </script>
  257. <style lang="scss" scoped>
  258. .night-mode {
  259. .group .card {
  260. background-color: var(--dark-grey-3);
  261. p {
  262. color: var(--light-grey-2);
  263. }
  264. }
  265. .group .card .card-content .projects a,
  266. .other-contributors div a {
  267. background-color: var(--dark-grey);
  268. }
  269. }
  270. .container {
  271. max-width: 100% !important;
  272. }
  273. a {
  274. color: var(--primary-color);
  275. &:hover,
  276. &:focus {
  277. filter: brightness(95%);
  278. }
  279. }
  280. h2,
  281. h3,
  282. h4 {
  283. margin: 20px 0;
  284. }
  285. h2 {
  286. margin-top: 50px;
  287. }
  288. .other-contributors {
  289. display: flex;
  290. flex-direction: column;
  291. justify-content: center;
  292. text-align: center;
  293. margin-bottom: 50px;
  294. div {
  295. display: flex;
  296. flex-wrap: wrap;
  297. justify-content: center;
  298. a {
  299. background: var(--white);
  300. padding: 10px;
  301. border-radius: 5px;
  302. white-space: nowrap;
  303. margin-top: 5px;
  304. font-size: 16px;
  305. text-align: center;
  306. box-shadow: 0 1px 2px rgba(10, 10, 10, 0.1),
  307. 0 0 0 1px rgba(10, 10, 10, 0.1);
  308. &:not(:last-of-type) {
  309. margin-right: 5px;
  310. }
  311. }
  312. }
  313. }
  314. .group {
  315. display: flex;
  316. flex-wrap: wrap;
  317. justify-content: center;
  318. margin: 0 auto;
  319. max-width: 1260px;
  320. .card {
  321. display: inline-flex;
  322. flex-direction: column;
  323. width: calc(100% - 30px);
  324. max-width: 400px;
  325. margin: 10px;
  326. text-align: left;
  327. border-radius: 5px;
  328. box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1),
  329. 0 0 0 1px rgba(10, 10, 10, 0.1);
  330. .card-header {
  331. line-height: 22.5px;
  332. padding: 10px;
  333. .profile-picture {
  334. margin-right: 10px;
  335. width: 45px;
  336. height: 45px;
  337. font-size: 20px;
  338. }
  339. div {
  340. display: flex;
  341. flex-direction: column;
  342. line-height: 20px;
  343. margin: auto 0;
  344. strong {
  345. font-size: 18px;
  346. }
  347. }
  348. a {
  349. margin-top: auto;
  350. margin-bottom: auto;
  351. margin-left: auto;
  352. }
  353. }
  354. .card-content {
  355. display: flex;
  356. flex-direction: column;
  357. flex-grow: 1;
  358. .bio {
  359. font-size: 16px;
  360. margin-bottom: 10px;
  361. }
  362. .projects {
  363. display: flex;
  364. flex-wrap: wrap;
  365. margin-top: auto;
  366. a {
  367. background: var(--light-grey);
  368. height: 30px;
  369. padding: 5px;
  370. border-radius: 5px;
  371. white-space: nowrap;
  372. margin-top: 5px;
  373. &:not(:last-of-type) {
  374. margin-right: 5px;
  375. }
  376. }
  377. }
  378. }
  379. }
  380. }
  381. </style>