Partial content changes

This commit is contained in:
mitchell 2019-04-23 08:14:29 -07:00
parent 45913005ee
commit 715312209d
3 changed files with 29 additions and 33 deletions

View file

@ -1,26 +1,21 @@
// @flow
import React from "react"
import React from 'react'
import "./index.css"
import profile from "../../images/profile.jpg"
import './index.css'
import profile from '../../images/profile.jpg'
type Props = {}
class Home extends React.PureComponent<Props> {
render() {
render () {
return (
<div className="home-container">
<img src={profile} alt="Profile" />
<div className='home-container'>
<img src={profile} alt='Profile' />
<p>Hello and welcome,</p>
<p>
I am a software developer, with most of my experience in web services.
I have been focused on serverless (FaaS) service architecture, for the
last year. The languages I am currently proficient in include Go,
JavaScript, and Ruby. I build web services with APIs mostly utilizing
the REST architectural style, and various relational and key-value
DBMS. In addition to this, I am acclimated with JaveScript client-side
development, like React.js/Native. I&#39;m currently working to
acclimate myself with gRPC and Docker deployments.
I love working with Golang, gRPC, TypeScript, and Redis. I have
experience working with Serverless, DynamoDB, PostgreSQL, Node.js,
</p>
<p>
My professional interests, aside from the above, include software
@ -33,7 +28,7 @@ class Home extends React.PureComponent<Props> {
Thank you for reading my quick bio. If you would like to contact me
visit the contact page for all of your options.
</p>
<p className="signature">- Mitchell J. F. Simon, III</p>
<p className='signature'>- Mitchell J. F. Simon, III</p>
</div>
)
}