We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2394c74 commit d9aee18Copy full SHA for d9aee18
src/pages/404.module.css
@@ -0,0 +1,7 @@
1
+.container {
2
+ padding: 2rem;
3
+}
4
+
5
+.root {
6
+ text-align: center;
7
src/pages/404.tsx
@@ -1,11 +1,16 @@
import Layout from "../components/layout"
import Seo from "../components/seo"
+import styles from "./404.module.css"
const NotFoundPage = () => (
<Layout>
<Seo title="404: Not found" />
- <h1>NOT FOUND</h1>
8
- <p>You just found a route that doesn't exist... the sadness.</p>
+ <div className={styles.container}>
9
+ <main className={styles.root}>
10
+ <h1>NOT FOUND</h1>
11
+ <p>You just found a route that doesn't exist... the sadness.</p>
12
+ </main>
13
+ </div>
14
</Layout>
15
)
16
0 commit comments