Upgrade to alpha-2

This commit is contained in:
Kyle Mathews 2016-09-20 22:23:54 -07:00
parent 94a2ab7ea3
commit 640be90860
12 changed files with 200 additions and 116 deletions

View file

@ -1,5 +1,4 @@
import React from 'react'
import { config } from 'config'
import { rhythm } from 'utils/typography'
import { prefixLink } from 'gatsby-helpers'
import profilePic from './profile-pic.jpg'
@ -14,7 +13,7 @@ class Bio extends React.Component {
>
<img
src={prefixLink(profilePic)}
alt={`author ${config.authorName}`}
alt={`author name`}
style={{
float: 'left',
marginRight: rhythm(1/4),
@ -23,7 +22,7 @@ class Bio extends React.Component {
height: rhythm(2),
}}
/>
Written by <strong>{config.authorName}</strong> who lives and works in San Francisco building useful things. <a href="https://twitter.com/kylemathews">You should follow him on Twitter</a>
Written by <strong>TODO author name</strong> who lives and works in TODO San Francisco building useful things. <a href="https://twitter.com/kylemathews">You should follow him on Twitter</a>
</p>
)
}