diff options
| author | Kevin J Hoerr <kjhoerr@protonmail.com> | 2021-04-22 01:39:47 -0400 |
|---|---|---|
| committer | Kevin J Hoerr <kjhoerr@protonmail.com> | 2021-04-22 01:39:47 -0400 |
| commit | d4f172ed203e6f3f6d1143f49c304cea8d45170e (patch) | |
| tree | 2d1d611052df544df9603d2ebd9f17905a90ebea /src/pages/404.tsx | |
| parent | 9bfb5ce80ce8b5c2e7821b7ebea28a5f35848135 (diff) | |
| download | submelon.dev-d4f172ed203e6f3f6d1143f49c304cea8d45170e.tar.gz submelon.dev-d4f172ed203e6f3f6d1143f49c304cea8d45170e.tar.bz2 submelon.dev-d4f172ed203e6f3f6d1143f49c304cea8d45170e.zip | |
Changes
Diffstat (limited to 'src/pages/404.tsx')
| -rw-r--r-- | src/pages/404.tsx | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/src/pages/404.tsx b/src/pages/404.tsx new file mode 100644 index 0000000..053ae0e --- /dev/null +++ b/src/pages/404.tsx @@ -0,0 +1,54 @@ +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, +} + +// 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 couldn’t 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> + ) +} + +export default NotFoundPage |
