Skip to content

Commit

Permalink
feat(social): added site level meta tags
Browse files Browse the repository at this point in the history
  • Loading branch information
travi committed Oct 30, 2020
1 parent b1bc700 commit 922600e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@ export default function SiteLayout({children}) {
<Helmet
titleTemplate={`%s | ${data.site.siteMetadata.title}`}
defaultTitle={data.site.siteMetadata.title}
/>
>
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@desmoinesjs" />
<meta property="og:site_name" content="dsmJS" />
</Helmet>
{children}
</Layout>
);
Expand Down

0 comments on commit 922600e

Please sign in to comment.