1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-06-30 05:31:44 +02:00

change where typekit is loaded

This commit is contained in:
Matthias Kretschmann 2018-04-21 16:28:43 +02:00
parent e9073bf677
commit 5e20db2f72
Signed by: m
GPG Key ID: 606EEEF3C479A91F
2 changed files with 14 additions and 18 deletions

View File

@ -1,27 +1,20 @@
import React from 'react'
import PropTypes from 'prop-types'
import Helmet from 'react-helmet'
import WebFont from 'webfontloader'
class Head extends React.Component {
componentDidMount() {
WebFont.load({ typekit: { id: this.props.meta.typekit } })
}
const Head = ({ meta }) => {
const { title, tagline, description } = meta
render() {
const { title, tagline, description } = this.props.meta
return (
<Helmet
defaultTitle={`${title.toLowerCase()} { ${tagline.toLowerCase()} }`}
titleTemplate={`%s // ${title.toLowerCase()} { ${tagline.toLowerCase()} }`}
>
<meta name="description" content={description} />
return (
<Helmet
defaultTitle={`${title.toLowerCase()} { ${tagline.toLowerCase()} }`}
titleTemplate={`%s // ${title.toLowerCase()} { ${tagline.toLowerCase()} }`}
>
<meta name="description" content={description} />
<meta content="noindex,nofollow" name="robots" />
</Helmet>
)
}
<meta content="noindex,nofollow" name="robots" />
</Helmet>
)
}
Head.propTypes = {

View File

@ -1,5 +1,6 @@
import React from 'react'
import PropTypes from 'prop-types'
import WebFont from 'webfontloader'
import Head from '../components/atoms/Head'
import Header from '../components/organisms/Header'
import Footer from '../components/organisms/Footer'
@ -12,6 +13,8 @@ const TemplateWrapper = ({ data, location, children }) => {
return (
<div className="app">
<Head meta={meta} />
{WebFont.load({ typekit: { id: meta.typekit } })}
<Header meta={meta} isHomepage={isHomepage} />
{children()}