team.js 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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: [{ icon: 'github', link: 'https://github.com/jaapmarcus' }],
  13. },
  14. {
  15. avatar: 'https://www.github.com/Lupul.png',
  16. name: 'Robert Zollner 🇷🇴',
  17. links: [{ icon: 'github', link: 'https://github.com/Lupul' }],
  18. },
  19. ];
  20. const globeIcon = {
  21. 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>',
  22. };
  23. /** @type {import("vitepress").DefaultTheme.TeamMember[]} */
  24. export const teamMembers = [
  25. {
  26. avatar: 'https://www.github.com/jakobbouchard.png',
  27. name: 'Jakob Bouchard 🇨🇦',
  28. title: 'Developer',
  29. org: 'Prosomo',
  30. orgLink: 'https://prosomo.com',
  31. links: [
  32. { icon: 'github', link: 'https://github.com/jakobbouchard' },
  33. { icon: 'linkedin', link: 'https://www.linkedin.com/in/jakobbouchard' },
  34. { icon: globeIcon, link: 'https://jakobbouchard.dev' },
  35. ],
  36. },
  37. {
  38. avatar:
  39. 'https://cdn.discordapp.com/avatars/737905427097845780/32452f630dd8684ed7c580806ccbee09.webp',
  40. name: 'Falzo 🇩🇪',
  41. links: [{ icon: 'github', link: 'https://github.com/falzoMAD' }],
  42. },
  43. {
  44. avatar: 'https://www.github.com/divinity76.png',
  45. name: 'divinity76 🇳🇴',
  46. links: [{ icon: 'github', link: 'https://github.com/divinity76' }],
  47. },
  48. {
  49. avatar: 'https://www.github.com/Pleskan.png',
  50. name: 'Anton Pleskanovskyy 🇺🇦',
  51. links: [{ icon: 'github', link: 'https://github.com/Pleskan' }],
  52. },
  53. {
  54. avatar: 'https://www.github.com/AlecRust.png',
  55. name: 'Alec Rust 🇬🇧',
  56. links: [
  57. { icon: 'github', link: 'https://github.com/AlecRust' },
  58. { icon: globeIcon, link: 'https://www.alecrust.com/' },
  59. ],
  60. },
  61. {
  62. avatar: 'https://github.com/ioannidesalex.png',
  63. name: 'Alexandros Ioannides 🇨🇾',
  64. title: 'CTO',
  65. org: 'FocusNet',
  66. orgLink: 'https://focus-net.net',
  67. links: [
  68. { icon: 'github', link: 'https://github.com/ioannidesalex' },
  69. { icon: 'linkedin', link: 'https://www.linkedin.com/in/ioannidesa' },
  70. ],
  71. },
  72. ];