diff --git a/src/components/seo.js b/src/components/seo.js index af1baf35..b30543cc 100644 --- a/src/components/seo.js +++ b/src/components/seo.js @@ -39,25 +39,45 @@ function SEO({ description, lang, meta, title, imageShare }) { titleTemplate={`%s | ${site.siteMetadata.title}`} meta={[ { - name: `description`, + name: 'description', content: metaDescription, }, { - property: `og:title`, + property: 'og:title', content: title, }, { - property: `og:description`, + property: 'og:description', content: metaDescription, }, { - property: `og:type`, - content: `website`, + property: 'og:type', + content: 'website', }, { - property: `og:image`, + property: 'og:image', content: `${site.siteMetadata.siteUrl}${imageShare}`, - } + }, + { + name: 'twitter:card', + content: 'summary', + }, + { + name: 'twitter:creator', + content: site.siteMetadata.author, + }, + { + name: 'twitter:title', + content: title, + }, + { + name: 'twitter:description', + content: metaDescription, + }, + { + name: 'twitter:image', + content: `${site.siteMetadata.siteUrl}${imageShare}`, + }, ].concat(meta)} link={[ { rel: 'shortcut icon', type: 'image/png', href: `${favicon}` } diff --git a/src/pages/cv.js b/src/pages/cv.js index 60913e96..dfa7a164 100644 --- a/src/pages/cv.js +++ b/src/pages/cv.js @@ -1,11 +1,10 @@ import React from "react" -import Layout from "../components/layout" import SEO from "../components/seo" const CvPage = ({}) => { return ( <> - +
- +
diff --git a/static/RachelNormand.jpeg b/static/RachelNormand.jpeg new file mode 100644 index 00000000..29af7d67 Binary files /dev/null and b/static/RachelNormand.jpeg differ