fix(404 page): fix seo

This commit is contained in:
Medzik 2021-08-06 17:58:01 +00:00
parent f5abcda734
commit a102b8bc79
2 changed files with 7 additions and 2 deletions

View File

@ -1,12 +1,17 @@
import React from "react" import React from "react"
import { Link } from "gatsby" import { Link } from "gatsby"
import Seo from "../components/seo"
import "../css/base.css" import "../css/base.css"
const NotFoundPage = () => { const NotFoundPage = () => {
return ( return (
<> <>
<title>Not found</title> <Seo
title="Not found"
/>
<h1>Page not found</h1> <h1>Page not found</h1>
<p> <p>
Sorry we couldnt find what you were looking for. Sorry we couldnt find what you were looking for.

View File

@ -1,6 +1,6 @@
import React from "react" import React from "react"
import { Link } from "gatsby" import { Link } from "gatsby"
import { NotificationContainer } from 'react-notifications' import { NotificationContainer } from "react-notifications"
import Seo from "../components/seo" import Seo from "../components/seo"