Links.js
2.35 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
import React, { Component } from 'react';
import Title from './Common/Title';
import Text from './Common/Text';
import './Links.css';
import me from './images/me.svg';
class Links extends Component {
render() {
return (
<div className="content">
<img src={me} className="watermark" height="600px" alt="" />
<div id="links">
<Title headline="Links and Resources">
<p>
Some external resources about me.
</p>
</Title>
<Text headline="Weird Web Workers">
<p>The portal to my personal projects is
<a href="https://www.weird-web-workers.org">
Weird Web Workers</a>
</p>
</Text>
<Text headline="Email">
<p>If you want to you may reach me at
<a href="mailto:georg@steffers.org">georg@steffers.org</a>
</p>
</Text>
<Text headline="GnuPG Public Key">
<p>
There are three key's for georg@steffers.org available on
public key servers. One is revoked and I have lost the private
key for another one by accident. Please use this one:
</p>
<div className="gpg">
<pre>2048 bit RSA key 68784538, created: 2012-12-07</pre>
<pre>6C5C BDD9 7010 F187 73A7 3F8F 4C5D 2267 6878 4538</pre>
</div>
</Text>
<Text headline="LinkedIn">
<p>
You can find me on
<a href="https://de.linkedin.com/in/georg-hopp-38a0a597">LinkedIn</a>
</p>
</Text>
<Text headline="Facebook">
<p>
You can also find me on
<a href="https://www.facebook.com/gsteffers">Facebook</a>.
</p>
</Text>
<Text headline="Xing">
<p>
And finally there is also a profile on
<a href="https://www.xing.com/profile/Georg_Hopp2">Xing</a>.
</p>
</Text>
<Text headline="Github">
<p>
Additionally to Weird Web Workers some code is published on
<a href="https://github.com/georghopp">Github</a>.
</p>
</Text>
</div>
</div>
);
}
}
export default Links;
// vim: set ts=2 sw=2 et: