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: