| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /** @type {import("vitepress").DefaultTheme.TeamMember[]} */
- export const projectManagers = [
- {
- avatar: 'https://www.github.com/ScIT-Raphael.png',
- name: 'Raphael Schneeberger 🇨🇭',
- title: 'Project Founder',
- links: [{ icon: 'github', link: 'https://github.com/ScIT-Raphael' }],
- },
- {
- avatar: 'https://www.github.com/jaapmarcus.png',
- name: 'Jaap Marcus 🇳🇱',
- links: [
- { icon: 'github', link: 'https://github.com/jaapmarcus' },
- { icon: 'twitter', link: 'https://twitter.com/jaapmarcus' },
- ],
- },
- {
- avatar: 'https://www.github.com/Lupul.png',
- name: 'Robert Zollner 🇷🇴',
- links: [{ icon: 'github', link: 'https://github.com/Lupul' }],
- },
- ];
- const globeIcon = {
- 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>',
- };
- /** @type {import("vitepress").DefaultTheme.TeamMember[]} */
- export const teamMembers = [
- {
- avatar: 'https://www.github.com/jakobbouchard.png',
- name: 'Jakob Bouchard 🇨🇦',
- title: 'Developer',
- org: 'Prosomo',
- orgLink: 'https://prosomo.com',
- links: [
- { icon: 'github', link: 'https://github.com/jakobbouchard' },
- { icon: 'linkedin', link: 'https://www.linkedin.com/in/jakobbouchard' },
- { icon: globeIcon, link: 'https://jakobbouchard.dev' },
- ],
- },
- {
- avatar:
- 'https://cdn.discordapp.com/avatars/737905427097845780/32452f630dd8684ed7c580806ccbee09.webp',
- name: 'Falzo 🇩🇪',
- links: [{ icon: 'github', link: 'https://github.com/falzoMAD' }],
- },
- {
- avatar: 'https://www.github.com/divinity76.png',
- name: 'divinity76 🇳🇴',
- links: [{ icon: 'github', link: 'https://github.com/divinity76' }],
- },
- {
- avatar: 'https://www.github.com/Pleskan.png',
- name: 'Anton Pleskanovskyy 🇺🇦',
- links: [{ icon: 'github', link: 'https://github.com/Pleskan' }],
- },
- {
- avatar: 'https://www.github.com/AlecRust.png',
- name: 'Alec Rust 🇬🇧',
- links: [
- { icon: 'github', link: 'https://github.com/AlecRust' },
- { icon: globeIcon, link: 'https://www.alecrust.com/' },
- ],
- },
- {
- avatar: 'https://github.com/ioannidesalex.png',
- name: 'Alexandros Ioannides 🇨🇾',
- title: 'CTO',
- org: 'FocusNet',
- orgLink: 'https://focus-net.net',
- links: [
- { icon: 'github', link: 'https://github.com/ioannidesalex' },
- { icon: 'linkedin', link: 'https://www.linkedin.com/in/ioannidesa' },
- ],
- },
- ];
|