Skip to content

Commit 347cac3

Browse files
committed
removed gatsby SEO component
1 parent 6a72c59 commit 347cac3

File tree

4 files changed

+0
-94
lines changed

4 files changed

+0
-94
lines changed

src/components/seo.js

Lines changed: 0 additions & 88 deletions
This file was deleted.

src/pages/404.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
import React from "react"
22

33
import Layout from "../components/layout"
4-
import SEO from "../components/seo"
54

65
const NotFoundPage = () => (
76
<Layout>
8-
<SEO title="404: Not found" />
97
<h1>NOT FOUND</h1>
108
<p>You just hit a route that doesn&#39;t exist... the sadness.</p>
119
</Layout>

src/pages/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,9 @@ import { Link } from "gatsby"
33

44
import Layout from "../components/layout"
55
import Image from "../components/image"
6-
import SEO from "../components/seo"
76

87
const IndexPage = () => (
98
<Layout>
10-
<SEO title="Home" />
119
<h1>Hi people</h1>
1210
<p>Welcome to your new Gatsby site.</p>
1311
<p>Now go build something great.</p>

src/pages/page-2.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@ import React from "react"
22
import { Link } from "gatsby"
33

44
import Layout from "../components/layout"
5-
import SEO from "../components/seo"
65

76
const SecondPage = () => (
87
<Layout>
9-
<SEO title="Page two" />
108
<h1>Hi from the second page</h1>
119
<p>Welcome to page 2</p>
1210
<Link to="/">Go back to the homepage</Link>

0 commit comments

Comments
 (0)