team.js 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /** @type {import("vitepress").DefaultTheme.TeamMember[]} */
  2. export const projectManagers = [
  3. {
  4. avatar: 'https://www.github.com/ScIT-Raphael.png',
  5. name: 'Raphael Schneeberger 🇨🇭',
  6. title: 'Project Founder',
  7. links: [{ icon: 'github', link: 'https://github.com/ScIT-Raphael' }],
  8. },
  9. {
  10. avatar: 'https://www.github.com/jaapmarcus.png',
  11. name: 'Jaap Marcus 🇳🇱',
  12. links: [
  13. { icon: 'github', link: 'https://github.com/jaapmarcus' },
  14. { icon: 'twitter', link: 'https://twitter.com/jaapmarcus' },
  15. ],
  16. },
  17. {
  18. avatar: 'https://www.github.com/Lupul.png',
  19. name: 'Robert Zollner 🇷🇴',
  20. links: [{ icon: 'github', link: 'https://github.com/Lupul' }],
  21. },
  22. ];
  23. const globeIcon = {
  24. svg: '<svg role="img" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><title>Website</title><path stroke-linecap="round" stroke-linejoin="round" d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9" /></svg>',
  25. };
  26. /** @type {import("vitepress").DefaultTheme.TeamMember[]} */
  27. export const teamMembers = [
  28. {
  29. avatar: 'https://www.github.com/jakobbouchard.png',
  30. name: 'Jakob Bouchard 🇨🇦',
  31. title: 'Developer',
  32. org: 'Prosomo',
  33. orgLink: 'https://prosomo.com',
  34. links: [
  35. { icon: 'github', link: 'https://github.com/jakobbouchard' },
  36. { icon: 'linkedin', link: 'https://www.linkedin.com/in/jakobbouchard' },
  37. { icon: globeIcon, link: 'https://jakobbouchard.dev' },
  38. ],
  39. },
  40. {
  41. avatar:
  42. 'https://cdn.discordapp.com/avatars/737905427097845780/32452f630dd8684ed7c580806ccbee09.webp',
  43. name: 'Falzo 🇩🇪',
  44. links: [{ icon: 'github', link: 'https://github.com/falzoMAD' }],
  45. },
  46. {
  47. avatar: 'https://www.github.com/divinity76.png',
  48. name: 'divinity76 🇳🇴',
  49. links: [{ icon: 'github', link: 'https://github.com/divinity76' }],
  50. },
  51. {
  52. avatar: 'https://www.github.com/Pleskan.png',
  53. name: 'Anton Pleskanovskyy 🇺🇦',
  54. links: [{ icon: 'github', link: 'https://github.com/Pleskan' }],
  55. },
  56. {
  57. avatar: 'https://www.github.com/AlecRust.png',
  58. name: 'Alec Rust 🇬🇧',
  59. links: [
  60. { icon: 'github', link: 'https://github.com/AlecRust' },
  61. { icon: globeIcon, link: 'https://www.alecrust.com/' },
  62. ],
  63. },
  64. {
  65. avatar: 'https://github.com/ioannidesalex.png',
  66. name: 'Alexandros Ioannides 🇨🇾',
  67. title: 'CTO',
  68. org: 'FocusNet',
  69. orgLink: 'https://focus-net.net',
  70. links: [
  71. { icon: 'github', link: 'https://github.com/ioannidesalex' },
  72. { icon: 'linkedin', link: 'https://www.linkedin.com/in/ioannidesa' },
  73. ],
  74. },
  75. ];