diff --git a/packages/dashboard-v2/src/pages/404.js b/packages/dashboard-v2/src/pages/404.js
index fd99104f..36c9165a 100644
--- a/packages/dashboard-v2/src/pages/404.js
+++ b/packages/dashboard-v2/src/pages/404.js
@@ -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 (
-
- Not found
- Page not found
-
- Sorry{" "}
-
- 😔
- {" "}
- we couldn’t find what you were looking for.
-
- {process.env.NODE_ENV === "development" ? (
- <>
-
- Try creating a page in src/pages/
.
-
- >
- ) : null}
-
- Go home.
-
-
+
+
+ Not found
+
+
+ Oops! 😔
+ Whatever you're looking for is not here.
+
+ Would you like to go back to homepage?
+
+
+
);
};
+NotFoundPage.Layout = DashboardLayout;
+
export default NotFoundPage;