Links.js 2.35 KB
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&nbsp;
              <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&nbsp;
              <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&nbsp;
              <a href="https://de.linkedin.com/in/georg-hopp-38a0a597">LinkedIn</a>
            </p>
          </Text>
          <Text headline="Facebook">
            <p>
              You can also find me on&nbsp;
              <a href="https://www.facebook.com/gsteffers">Facebook</a>.
            </p>
          </Text>
          <Text headline="Xing">
            <p>
              And finally there is also a profile on&nbsp;
              <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&nbsp;
              <a href="https://github.com/georghopp">Github</a>.
            </p>
          </Text>
        </div>
      </div>
      );
  }
}

export default Links;
// vim: set ts=2 sw=2 et: