www/pages/404.tsx

25 lines
871 B
TypeScript
Raw Normal View History

2022-04-28 10:05:26 -04:00
import Link from 'next/link';
import Layout from '../components/layout';
2021-12-07 22:38:31 -05:00
function NotFoundPage() {
return (
2022-04-28 10:05:26 -04:00
<Layout title='Page Not Found' name='... ??? / 404: Not Found'>
<section className='block text center'>
<h1>Error 404</h1>
2021-12-07 22:38:31 -05:00
<p>
<strong>Uh oh! The page you are looking for does not exist...</strong><br />
</p>
2022-04-28 10:05:26 -04:00
<Link href='/'>
<a className='button green back link'>
Go Home
</a>
</Link>
<a className='button blue link extern' href='https://en.wikipedia.org/wiki/List_of_HTTP_status_codes'>
More on HTTP status codes
</a>
2022-02-15 22:24:17 -05:00
</section>
2021-12-07 22:38:31 -05:00
</Layout>
);
}
export default NotFoundPage;