diff --git a/www/src/pages/blog/index.js b/www/src/pages/blog/index.js index b8947f6d054f9..8bfcbf76af60d 100644 --- a/www/src/pages/blog/index.js +++ b/www/src/pages/blog/index.js @@ -1,4 +1,6 @@ import React from "react" +import Helmet from "react-helmet" + import Container from "../../components/container" import BlogPostPreviewItem from "../../components/blog-post-preview-item" @@ -19,6 +21,9 @@ class BlogPostsIndex extends React.Component { }, }} > + + Blog + + + Bound Action Creators +

Bound Action Creators

Gatsby uses diff --git a/www/src/pages/docs/browser-apis.js b/www/src/pages/docs/browser-apis.js index 0bbd1f612bf96..47d37c5bcea16 100644 --- a/www/src/pages/docs/browser-apis.js +++ b/www/src/pages/docs/browser-apis.js @@ -1,4 +1,5 @@ import React from "react" +import Helmet from "react-helmet" import Functions from "../../components/function-list" import { rhythm, scale } from "../../utils/typography" @@ -8,6 +9,9 @@ class BrowserAPIDocs extends React.Component { render() { return ( + + Browser APIs +

Gatsby Browser APIs

Usage

diff --git a/www/src/pages/docs/index.js b/www/src/pages/docs/index.js index ede84ee461559..3a982b807613a 100644 --- a/www/src/pages/docs/index.js +++ b/www/src/pages/docs/index.js @@ -1,5 +1,6 @@ import React from "react" import Link from "gatsby-link" +import Helmet from "react-helmet" import SidebarBody from "../../components/sidebar-body" import docsSidebar from "./doc-links.yaml" @@ -10,6 +11,9 @@ class IndexRoute extends React.Component { render() { return ( + + Docs +

Get started

Gatsby is a blazing-fast static site generator for React.

Install Gatsby{`'`}s command line tool

diff --git a/www/src/pages/docs/node-apis.js b/www/src/pages/docs/node-apis.js index 41e76ef272446..098b50c0e6ce1 100644 --- a/www/src/pages/docs/node-apis.js +++ b/www/src/pages/docs/node-apis.js @@ -1,4 +1,5 @@ import React from "react" +import Helmet from "react-helmet" import Functions from "../../components/function-list" import { rhythm, scale } from "../../utils/typography" @@ -8,6 +9,9 @@ class NodeAPIDocs extends React.Component { render() { return ( + + Node APIs +

Gatsby Node APIs

Gatsby gives plugins and site builders many APIs for controlling your diff --git a/www/src/pages/docs/ssr-apis.js b/www/src/pages/docs/ssr-apis.js index a7bfe5093c516..9e855e5050570 100644 --- a/www/src/pages/docs/ssr-apis.js +++ b/www/src/pages/docs/ssr-apis.js @@ -1,4 +1,5 @@ import React from "react" +import Helmet from "react-helmet" import Functions from "../../components/function-list" import { rhythm, scale } from "../../utils/typography" @@ -8,6 +9,9 @@ class SSRAPIs extends React.Component { render() { return ( + + SSR APIs +

Gatsby Server Rendering APIs

Usage

diff --git a/www/src/pages/features.js b/www/src/pages/features.js index a3f6e4e950aee..81115040bb360 100644 --- a/www/src/pages/features.js +++ b/www/src/pages/features.js @@ -1,4 +1,6 @@ import React, { Component } from "react" +import Helmet from "react-helmet" + import EvaluationTable from "../components/evaluation-table" import EvaluationCell from "../components/evaluation-cell" import FuturaParagraph from "../components/futura-paragraph" @@ -67,6 +69,9 @@ const LegendTable = () => { return (

+ + Features +
(
) -const getFeaturesData = function(data) { +const getFeaturesData = function (data) { const sections = (data || []) .map((row, i) => (row.node.Category ? i : -1)) .filter(rowNum => rowNum !== -1) diff --git a/www/src/pages/tutorial.js b/www/src/pages/tutorial.js index 9874296dc51ad..a21e0a987c097 100644 --- a/www/src/pages/tutorial.js +++ b/www/src/pages/tutorial.js @@ -1,9 +1,14 @@ import React from "react" +import Helmet from "react-helmet" import Link from "gatsby-link" + import Container from "../components/container" export default () => ( + + Tutorial +

Gatsby.js Tutorial

Hi! We’re so happy you decided to try using Gatsby. This tutorial has (or