team.js 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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/imjuniper.png',
  27. name: 'Juniper Bouchard 🇨🇦',
  28. links: [
  29. { icon: 'github', link: 'https://github.com/imjuniper' },
  30. { icon: globeIcon, link: 'https://imjuniper.fyi' },
  31. ],
  32. },
  33. {
  34. avatar:
  35. 'https://cdn.discordapp.com/avatars/737905427097845780/32452f630dd8684ed7c580806ccbee09.webp',
  36. name: 'Falzo 🇩🇪',
  37. links: [{ icon: 'github', link: 'https://github.com/falzoMAD' }],
  38. },
  39. {
  40. avatar: 'https://www.github.com/divinity76.png',
  41. name: 'divinity76 🇳🇴',
  42. links: [{ icon: 'github', link: 'https://github.com/divinity76' }],
  43. },
  44. {
  45. avatar: 'https://www.github.com/Pleskan.png',
  46. name: 'Anton Pleskanovskyy 🇺🇦',
  47. links: [{ icon: 'github', link: 'https://github.com/Pleskan' }],
  48. },
  49. {
  50. avatar: 'https://www.github.com/AlecRust.png',
  51. name: 'Alec Rust 🇬🇧',
  52. links: [
  53. { icon: 'github', link: 'https://github.com/AlecRust' },
  54. { icon: globeIcon, link: 'https://www.alecrust.com/' },
  55. ],
  56. },
  57. {
  58. avatar: 'https://github.com/ioannidesalex.png',
  59. name: 'Alexandros Ioannides 🇨🇾',
  60. title: 'CTO',
  61. org: 'FocusNet',
  62. orgLink: 'https://focus-net.net',
  63. links: [
  64. { icon: 'github', link: 'https://github.com/ioannidesalex' },
  65. { icon: 'linkedin', link: 'https://www.linkedin.com/in/ioannidesa' },
  66. ],
  67. },
  68. ];