import React, {PureComponent} from 'react'; import Link from '../base/link'; class About extends PureComponent { render () { return (

Hi, I'm Greg!

Insomnia started as a side-project of mine in 2014 and transitioned into what I do full-time in mid 2016.

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 {' '} Plus Plan {' '}

Thanks, and I hope you enjoy the app!

~ Gregory

); } } About.propTypes = {}; export default About;