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 { Link } from "gatsby"
import Seo from "../components/seo"
import "../css/base.css"
const NotFoundPage = () => {
return (
<>
<title>Not found</title>
<Seo
title="Not found"
/>
<h1>Page not found</h1>
<p>
Sorry we couldnt find what you were looking for.

View File

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