aboutsummaryrefslogtreecommitdiff
path: root/pages/404.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2022-10-17 22:55:40 -0400
committerAndrew Lee <alee14498@protonmail.com>2022-10-17 22:55:40 -0400
commit092e055f0c9fd2cc829a040fa915dbd0775ddbe3 (patch)
tree0c05556a414f412a33de72b9e3cdbca276b005cb /pages/404.js
parent106f4c054f29f5d0219e2cb335deccc81c43dfe7 (diff)
downloadpersonal-website-092e055f0c9fd2cc829a040fa915dbd0775ddbe3.tar.gz
personal-website-092e055f0c9fd2cc829a040fa915dbd0775ddbe3.tar.bz2
personal-website-092e055f0c9fd2cc829a040fa915dbd0775ddbe3.zip
New 404; Added more mono fonts
Diffstat (limited to 'pages/404.js')
-rw-r--r--pages/404.js9
1 files changed, 7 insertions, 2 deletions
diff --git a/pages/404.js b/pages/404.js
index 9c98161..92d138c 100644
--- a/pages/404.js
+++ b/pages/404.js
@@ -1,14 +1,19 @@
import Meta from '../components/meta'
import Link from 'next/link'
+import Router from 'next/router'
export default function PageError() {
return (
<>
<Meta title="404"/>
<div className="text-center font-hack font-bold flex flex-col justify-center gap-4 p-6 h-screen w-screen bg-material-gray text-white drop-shadow-lg">
- <h1 className="text-5xl">404!</h1>
+ <h1 className="text-5xl">404! o_0</h1>
<h2 className="text-3xl">Looks like you have entered the void... or maybe you are lost?</h2>
- <h2 className="text-3xl">Head back <Link href="/"><a className="link">home</a></Link> to not become lost</h2>
+ <h2 className="text-3xl">Go back or head back home to not become lost.</h2>
+ <div className="flex-row space-x-2">
+ <span onClick={() => Router.back()}><button className="button">Go back</button></span>
+ <Link href="/"><button className="button">Home</button></Link>
+ </div>
</div>
</>
)