| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- import type { DefaultTheme } from "vitepress";
- export const projectManagers: DefaultTheme.TeamMember[] = [
- {
- 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" }],
- },
- {
- avatar:
- "https://cdn.discordapp.com/avatars/737720562482151485/bac8f56f0a909032efaf60c1aa4047e5.webp",
- name: "Kristan Kenney 🇨🇦",
- },
- ];
- export const teamMembers: DefaultTheme.TeamMember[] = [
- {
- 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://linkedin.com/in/jakobbouchard" },
- {
- icon: {
- 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>',
- },
- 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/istiak101.png",
- name: "istiak101 🇧🇩",
- links: [{ icon: "github", link: "https://github.com/istiak101" }],
- },
- {
- 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" }],
- },
- ];
|