aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/pages/404.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/404.tsx')
-rw-r--r--src/pages/404.tsx18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/pages/404.tsx b/src/pages/404.tsx
index 053ae0e..fd99104 100644
--- a/src/pages/404.tsx
+++ b/src/pages/404.tsx
@@ -1,28 +1,28 @@
-import * as React from "react"
-import { Link } from "gatsby"
+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 = () => {
@@ -48,7 +48,7 @@ const NotFoundPage = () => {
<Link to="/">Go home</Link>.
</p>
</main>
- )
-}
+ );
+};
-export default NotFoundPage
+export default NotFoundPage;