Search Engine Optimization (SEO) and Social Sharing Cards with Gatsby

Perhaps you’ve been approached by an SEO expert who can maximize your revenue and page views by following these Three Simple Tricks! Relatively few people make the concerted effort to implement SEO in their web app. This tutorial will share some of the ins and outs of SEO and how you can implement common SEO patterns in your Gatsby web app, today. By the end of this post you’ll know how to do the following:

  • Implement SEO patterns with react-helmet
  • Create an optimized social sharing card for Twitter, Facebook, and Slack
  • Tweak the SEO component exposed in the default gatsby starter (gatsby-starter-default)

Implementation

A core ingredient for SEO is a meaningful title tag. Make sure to include related keywords without falling into buzzword bingo. Some crawlers also respect meta tags, while Google seems to ignore these tags for ranking and indexing at all.

You probably have seen something like the following:

The bare minimum requirement is to include a title tag for basic SEO. However, the following describes a powerful combo of content rendered at build time powered by Gatsby and GraphQL.

Gatsby + GraphQL

GraphQL is a crucial feature enabled via Gatsby (note: you don’t have to use GraphQL with Gatsby). Leveraging GraphQL to query your indexable content—wherever it lives (at build time!)—is one of the most powerful and flexible techniques enabled via Gatsby. The following sections are a brief look at the implementation of an extensible and flexible SEO component.

StaticQuery

Gatsby distinguishes between page-level queries and component queries. The former can use page GraphQL queries while the latter can use StaticQuery. A StaticQuery will be parsed, evaluated, and injected at build time into the component that is requesting the data, allowing to fall back to sane defaults, while also providing an extensible, reusable component.

Creating the SEO component

Using the power and flexibility of React, you can create a React component to power this functionality.

Note: react-helmet is enabled, by default, in gatsby-starter-default and gatsby-starter-blog.

If you’re not using those starters, follow this guide for installation instructions

This component doesn’t do anything yet, but it’s the foundation for a useful, extensible component. It leverages the useStaticQuery functionality enabled via Gatsby to query siteMetadata (e.g. details in gatsby-config.js) with description and keywords. At this point, the SEO component returns null to render nothing. Next, you will actually render something and build out the prototype for this SEO component.

Whew, getting closer! This will now render the meta description tag, and will do so using content injected at build-time with the useStaticQuery hook. Additionally, it will add the lang="en" attribute to the root-level html tag to silence that pesky Lighthouse warning 😉.

This is still the bare bones, rudimentary approach to SEO. An additional step is to enhance this functionality and get some useful functionality for sharing a page via social networks like Facebook, Twitter, and Slack.

Implementing social SEO

In addition to SEO for actual search engines you also want those pretty cards that social networks like Twitter and Slack enable. Specifically, the implementation should feature:

  • Description for embedded results
  • Title for embedded results
  • (Optionally) display an image and a card if an image is passed in to the component

Woo hoo! You enabled not only SEO for search engines like Google and Bing, but you also laid the groundwork for enhanced sharing capabilities on social networks. Finally, you will learn to add support for one of the more useful functionalities for SEO: a canonical link.

A canonical link is a hint to a search engine that this is the source for this content. It helps resolve duplicate content issues. For instance, if you have several paths to the same content, you can use a canonical link as akin to a soft redirect which will not harm your search ranking if implemented correctly.

To implement this functionality, you need to do the following:

  1. Enable passing a pathname prop to your SEO component
  2. Prefix your pathname prop with your siteUrl (from gatsby-config.js)
    • A canonical link should be absolute (e.g. https://your-site.com/canonical-link), so you will need to prefix with this siteUrl
  3. Tie into the link prop of react-helmet to create a <link rel="canonical" > tag

Woo hoo! Lots to digest here, but you’ve enabled adding an absolute canonical link by passing in a pathname prop and prefixing with siteUrl.

To bring it all home, it’s time to begin actually using this extensible SEO component to show all of these moving parts coming together to deliver a great SEO experience.

Using the SEO component

You created an extensible SEO component. It takes a title prop and then (optionally) description, meta, image, and pathname props.

In a page component

In a template

In many cases, you want to build a Markdown powered blog (see: this tutorial for more info). Of course, you want some nice SEO as well as a nifty image for sharing on Twitter, Facebook, and Slack. The following steps are needed:

  • Create a Markdown post
  • Add an image, and add it to the Markdown posts frontmatter
  • Query this image with GraphQL

Creating the post

Adding the image

Let’s see how an attached image will look like. For this tutorial, you can use the following image:

Scribble stones forming SEO

The image will need to be located at content/blog/2019-01-04-hello-world-seo/images/featured.jpg.

Make sure to use appropriately sized images for social sharing. Facebook and Twitter have restrictions beyond which they will ignore your image.

Querying with GraphQL

There are a few aspects worth nothing here:

  • You’re using pruneLength: 160 for the excerpt; this is because SEO meta descriptions should be between 150-170 characters

  • This is a slick feature of Gatsby’s GraphQL capabilities, and will truncate (e.g. with a trailing ...) appropriately. Perfect!

  • The image query is intentionally simplified, but a good base to build upon. There are specific size and aspect ratio requirements for both Facebook and Twitter.

The Payoff

Using the techniques outlined in this post, you’ve made your Gatsby application SEO-friendly as well as sharable on common social networks. Check out the following examples of a sample blog post.

Google

Indexing Results by Google

Facebook

Social Sharing Card as on Facebook

Twitter

Social Sharing Card as on Twitter

Slack

Social Sharing Card as on Slack

To learn more about these validations, check out how to validate SEO with the following tools from Google, Twitter, and Facebook.

The SEO resources outlined in this tutorial aren’t only a best practice, they’re also a best practice enabled, by default. Available today in gatsby-starter-default, use:

and you’ll have the SEO component available to maximize your SEO and social sharing capabilities. Check it out!

Further Learning

This tutorial is merely a shallow dive into the depths of SEO. Consider it a primer for further learning and a gentle introduction to some SEO concepts with a Gatsby twist. To truly master these concepts is outside the scope of this tutorial, but it truly is fascinating stuff that can directly lead to more eyes on your content!

References

  • Facebook uses the Open Graph tag format
  • Twitter uses twitter: keywords. See Twitter Cards for more info
  • Slack reads tags in the following order (source)
    1. oEmbed server
    2. Twitter cards tags / Facebook Open Graph tags
    3. HTML meta tags
  • Both Google and Apple offer support for JSON-LD, which is not covered in this guide
  • Check out the gatsby-seo-example for a ready-to-use starter for powering your Markdown-based blog.