Consolidate two bios into one Bio component

This commit is contained in:
Kyle Mathews 2016-03-16 09:40:26 -06:00
parent 02eadc482b
commit 603411f0cd
3 changed files with 33 additions and 30 deletions

29
components/Bio.js Normal file
View file

@ -0,0 +1,29 @@
import React from 'react'
import { config } from 'config'
import { rhythm } from 'utils/typography'
class Bio extends React.Component {
render () {
return (
<p
style={{
marginBottom: rhythm(2.5),
}}
>
<img
src="/kyle-round-small-pantheon.jpg"
style={{
float: 'left',
marginRight: rhythm(1/4),
marginBottom: 0,
width: rhythm(2),
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>
</p>
)
}
}
export default Bio

View file

@ -7,6 +7,7 @@ import { rhythm } from 'utils/typography'
import access from 'safe-access' import access from 'safe-access'
import { config } from 'config' import { config } from 'config'
import include from 'underscore.string/include' import include from 'underscore.string/include'
import Bio from 'components/Bio'
class BlogIndex extends React.Component { class BlogIndex extends React.Component {
render () { render () {
@ -33,23 +34,7 @@ class BlogIndex extends React.Component {
return ( return (
<DocumentTitle title={config.blogTitle}> <DocumentTitle title={config.blogTitle}>
<div> <div>
<p <Bio/>
style={{
marginBottom: rhythm(2.5),
}}
>
<img
src="./kyle-round-small-pantheon.jpg"
style={{
float: 'left',
marginRight: rhythm(1/4),
marginBottom: 0,
width: rhythm(2),
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>
</p>
<ul> <ul>
{pageLinks} {pageLinks}
</ul> </ul>

View file

@ -5,6 +5,7 @@ import { link } from 'gatsby-helpers'
import ReadNext from '../components/ReadNext' import ReadNext from '../components/ReadNext'
import { rhythm } from 'utils/typography' import { rhythm } from 'utils/typography'
import { config } from 'config' import { config } from 'config'
import Bio from 'components/Bio'
import '../css/zenburn.css' import '../css/zenburn.css'
@ -32,19 +33,7 @@ class MarkdownWrapper extends React.Component {
}} }}
/> />
<ReadNext post={post} pages={route.pages} /> <ReadNext post={post} pages={route.pages} />
<p> <Bio />
<img
src={link('/kyle-round-small-pantheon.jpg')}
style={{
float: 'left',
marginRight: rhythm(1/4),
marginBottom: 0,
width: rhythm(2),
height: rhythm(2),
}}
/>
<strong>{config.authorName}</strong> lives and works in San Francisco building useful things. <a href="https://twitter.com/kylemathews">You should follow him on Twitter</a>
</p>
</div> </div>
</DocumentTitle> </DocumentTitle>
) )