feat: add catch all route and pages for 404 and 500 errors

This commit is contained in:
Stevan Freeborn
2023-04-20 00:01:50 -05:00
parent 149a2385f6
commit ec87b67385
7 changed files with 85 additions and 2 deletions
+15
View File
@@ -0,0 +1,15 @@
import Link from 'next/link.js';
import styles from './error.module.css';
export default function Page() {
return (
<div className={styles.container}>
<h1>
Oops! The page you are trying to view does not exist
</h1>
<Link className={styles.navLink} href="/">
Go to the home page
</Link>
</div>
);
}