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 35b48a0 commit eb78efdCopy full SHA for eb78efd
pages/404.js
@@ -0,0 +1,11 @@
1
+import Link from 'next/link'
2
+const NotFound = () => {
3
+ return (
4
+ <div className="not-found">
5
+ <h1>Ooops...</h1>
6
+ <h2>That page cannot be found :(</h2>
7
+ <p>Go back to the <Link href="/"><a>Homepage</a></Link></p>
8
+ </div>
9
+ );
10
+}
11
+export default NotFound;
styles/globals.scss
@@ -20,3 +20,14 @@ a {
20
box-sizing: border-box;
21
}
22
23
+.not-found {
24
+ text-align: center;
25
26
+
27
+.not-found a {
28
+ color: $accent-color;
29
30
+ &:hover {
31
+ opacity: 0.6;
32
+ }
33
0 commit comments