forked from hestiacp/hestiacp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.js
More file actions
70 lines (68 loc) · 2.34 KB
/
team.js
File metadata and controls
70 lines (68 loc) · 2.34 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
/** @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' }],
},
{
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/imjuniper.png',
name: 'Juniper Bouchard 🇨🇦',
links: [
{ icon: 'github', link: 'https://github.com/imjuniper' },
{ icon: globeIcon, link: 'https://imjuniper.fyi' },
],
},
{
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' },
],
},
];