-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathindex.tsx
More file actions
49 lines (40 loc) · 1.14 KB
/
index.tsx
File metadata and controls
49 lines (40 loc) · 1.14 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
import React from "react";
const pmc_chair_quote = `"some text"`
const pmc_chair_name = "Wido den Hollander"
const pmc_chair_picture = "/img/authors/wido.png"
const pmc_chair_githandle = "wido"
const pmc_chair_linked = "widodh"
const git_link = "https://github.com/"+pmc_chair_githandle
const linked_link = "https://www.linkedin.com/in/"+pmc_chair_linked
export default function VP(): JSX.Element {
return <>
<div className="row">
<div className="col col--3">
<img src={pmc_chair_picture} alt={pmc_chair_name} className="blog-image"/>
</div>
<div className="col col--9">
<div className="row">
<div className="col">
<p>
PMC Chair: <b>{pmc_chair_name}</b>
</p>
</div>
<div className="col col--2">
<p>
<a href={git_link} target="_blank">
<img src="/img/git_logo.svg" width="20px" alt=""/>
</a>
<a href={linked_link} target="_blank">
<img src="/img/social/LinkedIn-Blue.png" width="20px" alt=""/>
</a>
</p>
</div>
</div>
<p>
{pmc_chair_quote}
</p>
</div>
</div>
</>
}