Team.vue 7.4 KB

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