jonbio/pages/404.js

25 lines
1.1 KiB
JavaScript
Raw Normal View History

2021-01-12 23:43:25 +08:00
import Link from '@/components/Link'
2021-01-12 22:47:03 +08:00
export default function FourZeroFour() {
return (
2021-01-12 23:35:36 +08:00
<div className="flex flex-col items-start justify-start md:justify-center md:items-center md:flex-row md:space-x-6 md:mt-24">
2021-01-12 22:47:03 +08:00
<div className="pt-6 pb-8 space-x-2 md:space-y-5">
2021-01-12 23:35:36 +08:00
<h1 className="text-6xl font-extrabold leading-9 tracking-tight text-gray-900 dark:text-gray-100 md:text-8xl md:leading-14 md:border-r-2 md:px-6">
2021-01-12 22:47:03 +08:00
404
</h1>
</div>
2021-01-12 23:35:36 +08:00
<div className="max-w-md">
<p className="mb-4 text-xl font-bold leading-normal md:text-2xl">
2021-01-12 22:47:03 +08:00
Sorry we couldn't find this page.
</p>
2021-01-12 23:35:36 +08:00
<p className="mb-8">But dont worry, you can find plenty of other things on our homepage.</p>
2021-01-12 23:43:25 +08:00
<Link href="/">
<button className="inline px-4 py-2 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-blue-600 border border-transparent rounded-lg shadow focus:outline-none focus:shadow-outline-blue hover:bg-blue-700 dark:hover:bg-blue-500">
Back to homepage
</button>
</Link>
2021-01-12 22:47:03 +08:00
</div>
</div>
)
}