aboutsummaryrefslogtreecommitdiff
path: root/pages/404.js
blob: d1844499c75ac5106838201ca49301b2241f41b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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>
        </>
    )
}