Skip to content

Commit 4f690ce

Browse files
committed
Adds 404 page [Finishes #48]
1 parent 0ec74d2 commit 4f690ce

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

src/pages/404.js

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,19 @@ import Seo from "../components/seo"
55

66
const NotFoundPage = () => (
77
<Layout>
8-
<h1>404: Not Found</h1>
9-
<p>You just hit a route that doesn&#39;t exist... the sadness.</p>
8+
<div className="flex justify-center">
9+
<div className="max-w-sm rounded overflow-hidden shadow-lg m-4">
10+
<div className="flex justify-center font-light text-6xl text-gray-500 text-opacity-75">
11+
404
12+
</div>
13+
<div className="flex justify-center font-medium text-lg my-2 text-gray-800">The page you're looking for is not found.</div>
14+
<hr />
15+
<div className="px-6 py-4">
16+
Make sure the address is correct. If you think this is a mistake,
17+
<a href="/contact" className="ml-1 text-orange-400">contact us</a>
18+
</div>
19+
</div>
20+
</div>
1021
</Layout>
1122
)
1223

0 commit comments

Comments
 (0)