summary refs log tree commit diff
path: root/app/not-found.tsx
blob: b3a0fd420cbd2276f894c9194034978973f9706b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import InfoBar from "~/components/InfoBar/"

export default function NotFound() {
  return (
    <>
      <h1 className="pageTitle">Not Found (404)</h1>
      <main className="mainColumn">
        <InfoBar>
          <strong>Error:&nbsp;</strong>
          Unable to find the requested resource
        </InfoBar>

        <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>
    </>
  )
}