diff options
author | Ashelyn Rose <git@tempest.dev> | 2023-05-08 14:45:55 -0600 |
---|---|---|
committer | Ashelyn Rose <git@tempest.dev> | 2023-05-08 14:45:55 -0600 |
commit | 7e3dc4ace4c6b21bc68264dc76c8c442aec8031a (patch) | |
tree | c6ff346374e91913a12a8bb21da7fe8c29dd5429 /app/not-found.tsx | |
parent | 880cfbeb74546056feab63ed6e92a10c0dbaf2c3 (diff) |
standardize component structure more
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 |