forked from hestiacp/hestiacp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.ts
More file actions
74 lines (72 loc) · 2.45 KB
/
team.ts
File metadata and controls
74 lines (72 loc) · 2.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
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" }],
},
];