Custom 404 Page

This commit is contained in:
Kevin Kandlbinder 2020-12-25 17:27:23 +01:00
parent 9b9eed61c7
commit a637e0f3bb
3 changed files with 14 additions and 47 deletions

View file

@ -1,53 +1,20 @@
import * as React from "react"
import { Link } from "gatsby"
// styles
const pageStyles = {
color: "#232129",
padding: "96px",
fontFamily: "-apple-system, Roboto, sans-serif, serif",
}
const headingStyles = {
marginTop: 0,
marginBottom: 64,
maxWidth: 320,
}
const paragraphStyles = {
marginBottom: 48,
}
const codeStyles = {
color: "#8A6534",
padding: 4,
backgroundColor: "#FFF4DB",
fontSize: "1.25rem",
borderRadius: 4,
}
import { Link } from "gatsby-plugin-react-i18next"
import Layout from "../layouts/default"
// markup
const NotFoundPage = () => {
return (
<main style={pageStyles}>
<title>Not found</title>
<h1 style={headingStyles}>Page not found</h1>
<p style={paragraphStyles}>
Sorry{" "}
<span role="img" aria-label="Pensive emoji">
😔
</span>{" "}
we couldnt find what you were looking for.
<br />
{process.env.NODE_ENV === "development" ? (
<>
<br />
Try creating a page in <code style={codeStyles}>src/pages/</code>.
<br />
</>
) : null}
<br />
<Link to="/">Go home</Link>.
</p>
</main>
<Layout title="Not found">
<section>
<article>
<h1>Page not found</h1>
<p>
Whoops... That page doesn't exist, so you may as well <Link to="/">go home</Link>.
</p>
</article>
</section>
</Layout>
)
}