diff --git a/components/FourOhFour.tsx b/components/FourOhFour.tsx index a687682..e920fbc 100644 --- a/components/FourOhFour.tsx +++ b/components/FourOhFour.tsx @@ -3,14 +3,31 @@ import { FunctionComponent } from 'react' const FourOhFour: FunctionComponent<{ errorMsg: string }> = ({ errorMsg }) => { return ( -
+
404
-
- Error: {errorMsg}.{' '} - F12 for more - details. +
+
+ Oops, that's a four-oh-four. +
+
+ {errorMsg} +
+
+ Press{' '} + F12{' '} + and open devtools for more details, or seek help at{' '} + + onedrive-vercel-index discussions + + . +
) diff --git a/styles/markdown-github.css b/styles/markdown-github.css index 90790db..ecee121 100644 --- a/styles/markdown-github.css +++ b/styles/markdown-github.css @@ -136,11 +136,12 @@ } .markdown-body a { - color: #0366d6; + color: rgba(2, 132, 199); text-decoration: none; } .markdown-body a:hover { + color: rgba(3, 105, 161); text-decoration: underline; }