diff options
Diffstat (limited to 'app/not-found.tsx')
-rw-r--r-- | app/not-found.tsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/app/not-found.tsx b/app/not-found.tsx index 44753b0..b3a0fd4 100644 --- a/app/not-found.tsx +++ b/app/not-found.tsx @@ -1,12 +1,14 @@ +import InfoBar from "~/components/InfoBar/" + export default function NotFound() { return ( <> <h1 className="pageTitle">Not Found (404)</h1> <main className="mainColumn"> - <aside className="infobar"> + <InfoBar> <strong>Error: </strong> Unable to find the requested resource - </aside> + </InfoBar> <p> Feel free to start again from the <a href="/">home page</a>, or |