diff --git a/index.html b/index.html index 71168a8..93ed96e 100644 --- a/index.html +++ b/index.html @@ -33,7 +33,10 @@ name="twitter:description" content="Quality live programming from beyond the surveillance economy." /> - + diff --git a/src/components/Seo/index.js b/src/components/Seo/index.js index 6d66620..6f6eaa2 100644 --- a/src/components/Seo/index.js +++ b/src/components/Seo/index.js @@ -1,10 +1,11 @@ import { h } from 'preact' import { bool, string } from 'prop-types' import Helmet from 'react-helmet' +import config from '../../data/config' -const siteTitle = 'Underscore Streams' +const siteTitle = config.meta.title -function SEO({ description, title, metaImg: imgSrc, noindex }) { +function SEO({ description = config.meta.description, title, metaImg: imgSrc = config.meta.img, noindex }) { return (