diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2024-01-01 16:32:41 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2024-01-01 16:32:41 -0500 |
| commit | a0485ad26353a08562c13c14ea9de73fd705f9de (patch) | |
| tree | 1bc499c572e3642b769f7391f493d972a8a749d9 /pages/404.js | |
| parent | 0349923dd0a970f009ce7ca54881f8c398c67100 (diff) | |
| download | personal-website-a0485ad26353a08562c13c14ea9de73fd705f9de.tar.gz personal-website-a0485ad26353a08562c13c14ea9de73fd705f9de.tar.bz2 personal-website-a0485ad26353a08562c13c14ea9de73fd705f9de.zip | |
Initial Rewrite
Diffstat (limited to 'pages/404.js')
| -rw-r--r-- | pages/404.js | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/pages/404.js b/pages/404.js deleted file mode 100644 index 92d138c..0000000 --- a/pages/404.js +++ /dev/null @@ -1,20 +0,0 @@ -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! o_0</h1> - <h2 className="text-3xl">Looks like you have entered the void... or maybe you are 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> - </> - ) -} |
