diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2022-10-15 11:21:27 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2022-10-15 11:21:27 -0400 |
| commit | f4f4a70aac0513362bcfb24adf4ac6cfa1607cb4 (patch) | |
| tree | b265a010ce3005c32e0cb7da5de4b9580993dfa8 /pages/404.js | |
| parent | 63f5409acea0d3c748aeef0a2d939bc6c097b1fc (diff) | |
| download | personal-website-f4f4a70aac0513362bcfb24adf4ac6cfa1607cb4.tar.gz personal-website-f4f4a70aac0513362bcfb24adf4ac6cfa1607cb4.tar.bz2 personal-website-f4f4a70aac0513362bcfb24adf4ac6cfa1607cb4.zip | |
Added a 404 page
Diffstat (limited to 'pages/404.js')
| -rw-r--r-- | pages/404.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pages/404.js b/pages/404.js new file mode 100644 index 0000000..d184449 --- /dev/null +++ b/pages/404.js @@ -0,0 +1,15 @@ +import Meta from '../components/meta' +import Link from 'next/link' + +export default function PageError() { + return ( + <> + <Meta title="404"/> + <div className="text-center font-hack font-bold flex flex-col gap-4 p-6 h-screen w-screen bg-material-gray text-white drop-shadow-lg"> + <h1 className="text-5xl">404!</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> + </div> + </> + ) +} |
