diff options
author | Ashelyn Rose <git@tempest.dev> | 2023-05-08 02:17:40 -0600 |
---|---|---|
committer | Ashelyn Rose <git@tempest.dev> | 2023-05-08 02:17:40 -0600 |
commit | 880cfbeb74546056feab63ed6e92a10c0dbaf2c3 (patch) | |
tree | 33c7429bd5b1b968d74c74a4b7fbf0aa072111f7 /app/not-found.tsx | |
parent | 885d95d889633e312567d891831d74d9e120e5b8 (diff) |
New layout, uses nextjs
Diffstat (limited to 'app/not-found.tsx')
-rw-r--r-- | app/not-found.tsx | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/app/not-found.tsx b/app/not-found.tsx new file mode 100644 index 0000000..44753b0 --- /dev/null +++ b/app/not-found.tsx @@ -0,0 +1,23 @@ +export default function NotFound() { + return ( + <> + <h1 className="pageTitle">Not Found (404)</h1> + <main className="mainColumn"> + <aside className="infobar"> + <strong>Error: </strong> + Unable to find the requested resource + </aside> + + <p> + Feel free to start again from the <a href="/">home page</a>, or + check our <a href="/posts">list of posts</a> + </p> + + <p> + If you feel like something should have been here, and want to shout + at me about it, please <a href="/contact">contact Rose</a> + </p> + </main> + </> + ) +} |