2017-03-03 20:09:08 +00:00
|
|
|
import React, {PureComponent} from 'react';
|
2017-03-08 05:52:17 +00:00
|
|
|
import Link from '../base/link';
|
2016-11-07 20:24:38 +00:00
|
|
|
|
2017-03-08 05:52:17 +00:00
|
|
|
class About extends PureComponent {
|
2017-03-03 20:09:08 +00:00
|
|
|
render () {
|
|
|
|
return (
|
|
|
|
<div>
|
2017-04-04 23:38:17 +00:00
|
|
|
<h2 className="no-margin-top">Hi, I'm Greg!</h2>
|
2017-03-03 20:09:08 +00:00
|
|
|
<p>
|
|
|
|
Insomnia started as a side-project of mine in 2014 and transitioned into what I do full-time
|
|
|
|
in mid 2016.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
If you have any question or concerns, don't hesitate to reach out. And, if you want access to
|
|
|
|
cloud sync or just feel like being awesome, you can sign up for
|
|
|
|
{' '}
|
|
|
|
<Link href="https://insomnia.rest/pricing/">Plus Plan</Link>
|
|
|
|
{' '}
|
|
|
|
<i className="fa fa-smile-o txt-xl"/>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Thanks, and I hope you enjoy the app!
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
~ Gregory
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2016-11-07 20:24:38 +00:00
|
|
|
|
2017-03-08 05:52:17 +00:00
|
|
|
About.propTypes = {};
|
2016-11-07 20:24:38 +00:00
|
|
|
|
2017-03-08 05:52:17 +00:00
|
|
|
export default About;
|