diff options
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> + </> + ) +} |