From 6ee231a9e093d01bb67d5044a8a3832424be3890 Mon Sep 17 00:00:00 2001 From: Kevin J Hoerr Date: Wed, 26 May 2021 11:18:33 -0700 Subject: Run prettier --- src/pages/404.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/pages/404.tsx') 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 = () => { Go home.

- ) -} + ); +}; -export default NotFoundPage +export default NotFoundPage; -- cgit