Vitae.js
1.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
import React, { Component } from 'react';
import Text from './Common/Text';
import Textbox from './Common/Textbox';
import Title from './Common/Title';
import './Vitae.css';
class Vitae extends Component {
render() {
return (
<div className="content">
<div id="vitae">
<Textbox>
<Title headline="Vitae">
<p>
Oh no, not again… Why is everyone so possesed to know what
you have done in the past. Let's just forget about it and look at
the here and now and maybe try a small look into the future.
</p>
</Title>
<Text>
<p>
Right now I am the person who created this page. A pleasant guy with
a strong attitude to fairness and the desire to make the world a
better place. By the way I think I am a decent computer-programmer
and have at least scratched on the surface of unixoid operating
systems.
</p>
<p>
At some time I might become one of the legions that have witten
something that is at least of little use for society.
</p>
</Text>
</Textbox>
</div>
</div>
);
}
}
export default Vitae;
// vim: set ts=2 sw=2 et: