accords-library.com/src/pages/404.tsx

26 lines
592 B
TypeScript
Raw Normal View History

2021-12-23 22:07:20 +00:00
import Link from "next/link";
import ContentPanel from "components/Panels/ContentPanel";
import { applyCustomAppProps } from "./_app";
2022-01-01 19:04:48 +00:00
import Head from "next/head";
2021-12-23 22:07:20 +00:00
applyCustomAppProps(FourOhFour, {
useSubPanel: false,
useContentPanel: true,
});
export default function FourOhFour(): JSX.Element {
2021-12-23 22:07:20 +00:00
return (
2022-01-01 19:04:48 +00:00
<>
<Head>
<title>Accord&rsquo;s Library - 404</title>
</Head>
<ContentPanel>
<h1>404 - Page Not Found</h1>
<Link href="/">
<a>Go back home</a>
</Link>
</ContentPanel>
</>
2021-12-23 22:07:20 +00:00
);
}