feat(dashboard-v2): add custom 404 page

This commit is contained in:
Michał Leszczyk 2022-04-15 17:02:49 +02:00
parent 910270bca4
commit 3ed20e670b
No known key found for this signature in database
GPG Key ID: FA123CA8BAA2FBF4
1 changed files with 17 additions and 44 deletions

View File

@ -1,54 +1,27 @@
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,
};
import DashboardLayout from "../layouts/DashboardLayout";
const paragraphStyles = {
marginBottom: 48,
};
const codeStyles = {
color: "#8A6534",
padding: 4,
backgroundColor: "#FFF4DB",
fontSize: "1.25rem",
borderRadius: 4,
};
import { Metadata } from "../components/Metadata";
import HighlightedLink from "../components/HighlightedLink";
// 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>
<div>
<Metadata>
<title>Not found</title>
</Metadata>
<section className="mt-12">
<h1>Oops! 😔</h1>
<p>Whatever you're looking for is not here.</p>
<p>
Would you like to <HighlightedLink to="/">go back to homepage</HighlightedLink>?
</p>
</section>
</div>
);
};
NotFoundPage.Layout = DashboardLayout;
export default NotFoundPage;