Change font, add meta title/desc to 404 page

This commit is contained in:
Aaron William Po
2023-02-20 22:57:00 -05:00
parent 8836d1fc9b
commit 6f604b9768
9 changed files with 68 additions and 28 deletions

View File

@@ -2,10 +2,15 @@
import Layout from '@/components/ui/Layout';
import { NextPage } from 'next';
import Head from 'next/head';
const NotFound: NextPage = () => {
return (
<Layout>
<Head>
<title>404 Page Not Found</title>
<meta name="description" content="404 Page Not Found" />
</Head>
<div className="flex h-full flex-col items-center justify-center space-y-4">
<h1 className="text-7xl font-bold">Error: 404</h1>
<h2 className="text-xl font-bold">Page Not Found</h2>