Skip to content

Commit

Permalink
Fix missing <FooterLinks> from gatsby.org pages (#21492)
Browse files Browse the repository at this point in the history
  • Loading branch information
zainzafar90 authored Feb 16, 2020
1 parent 9357549 commit e720d8e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions www/src/pages/blog/tags.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import Button from "../../components/button"
import Layout from "../../components/layout"
import Container from "../../components/container"
import SearchIcon from "../../components/search-icon"
import FooterLinks from "../../components/shared/footer-links"
import { TAGS_AND_DOCS } from "../../data/tags-docs"
import { themedInput } from "../../utils/styles"
import { colors, space, mediaQueries } from "gatsby-design-tokens/dist/theme-gatsbyjs-org"
Expand Down Expand Up @@ -211,6 +212,7 @@ class TagsPage extends React.Component {
</ul>
</div>
</Container>
<FooterLinks />
</Layout>
)
}
Expand Down
2 changes: 2 additions & 0 deletions www/src/templates/tags.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import BlogPostPreviewItem from "../components/blog-post-preview-item"
import Button from "../components/button"
import Container from "../components/container"
import Layout from "../components/layout"
import FooterLinks from "../components/shared/footer-links"
import { TAGS_AND_DOCS } from "../data/tags-docs"

// Select first tag with whitespace instead of hyphens for
Expand Down Expand Up @@ -73,6 +74,7 @@ const Tags = ({ pageContext, data, location }) => {
/>
))}
</Container>
<FooterLinks />
</Layout>
)
}
Expand Down
2 changes: 2 additions & 0 deletions www/src/views/creators/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { jsx } from "theme-ui"
import { Component } from "react"
import { Helmet } from "react-helmet"
import Layout from "../../components/layout"
import FooterLinks from "../../components/shared/footer-links"
import CreatorsHeader from "./creators-header"
import Badge from "./badge"
import GithubIcon from "react-icons/lib/go/mark-github"
Expand Down Expand Up @@ -182,6 +183,7 @@ class CreatorsView extends Component {
{creators.length && <EmptyGridItems styles={styles.creatorCard} />}
</div>
</main>
<FooterLinks />
</Layout>
)
}
Expand Down

0 comments on commit e720d8e

Please sign in to comment.