Upgrade branch to latest gatsby

This commit is contained in:
Kyle Mathews 2017-03-14 11:01:37 -07:00
parent 98e654bee7
commit 854294a799
13 changed files with 8871 additions and 202 deletions

View file

@ -2,7 +2,7 @@ import React from 'react'
import { Link } from 'react-router'
import { Container } from 'react-responsive-grid'
import { prefixLink } from 'gatsby-helpers'
import { rhythm, adjustFontSizeToMSValue } from 'utils/typography'
import { rhythm, scale } from 'utils/typography'
class Template extends React.Component {
render () {
@ -12,7 +12,7 @@ class Template extends React.Component {
header = (
<h1
style={{
...adjustFontSizeToMSValue(1.5),
...scale(1.5),
marginBottom: rhythm(1.5),
marginTop: 0,
}}
@ -25,7 +25,7 @@ class Template extends React.Component {
}}
to={prefixLink('/')}
>
{'TODO insert blog title here from query'}
Gatsby Starter Blog
</Link>
</h1>
)
@ -35,6 +35,7 @@ class Template extends React.Component {
style={{
fontFamily: 'Montserrat, sans-serif',
marginTop: 0,
marginBottom: rhythm(-1),
}}
>
<Link
@ -45,7 +46,7 @@ class Template extends React.Component {
}}
to={prefixLink('/')}
>
{'insert blog title here'}
Gatsby Starter Blog
</Link>
</h3>
)