diff options
| author | Kevin J Hoerr <kjhoerr@protonmail.com> | 2021-05-26 11:18:33 -0700 |
|---|---|---|
| committer | Kevin J Hoerr <kjhoerr@protonmail.com> | 2021-05-26 11:18:33 -0700 |
| commit | 6ee231a9e093d01bb67d5044a8a3832424be3890 (patch) | |
| tree | 39fd3d6d5fddd62d56dc70a9ce59b593121fdfd6 /src/pages/404.tsx | |
| parent | 3be5c2762901a2dd1ce80c8d1f02fef612004098 (diff) | |
| download | submelon.dev-6ee231a9e093d01bb67d5044a8a3832424be3890.tar.gz submelon.dev-6ee231a9e093d01bb67d5044a8a3832424be3890.tar.bz2 submelon.dev-6ee231a9e093d01bb67d5044a8a3832424be3890.zip | |
Run prettier
Diffstat (limited to 'src/pages/404.tsx')
| -rw-r--r-- | src/pages/404.tsx | 18 |
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; |
