diff --git a/website/src/pages/404.tsx b/website/src/pages/404.tsx index 1eb600d7..aae1db0f 100644 --- a/website/src/pages/404.tsx +++ b/website/src/pages/404.tsx @@ -1,4 +1,7 @@ +import { Button, Link, Stack } from "@chakra-ui/react"; import Head from "next/head"; +import NextLink from "next/link"; +import { FiAlertTriangle } from "react-icons/fi"; export default function Error() { return ( @@ -8,7 +11,21 @@ export default function Error() {
-

Sorry, the page you are looking for does not exist.

+ +

Sorry, the page you are looking for does not exist.

+

If you were trying to contribute data but ended up here, please file a bug

+ +
); diff --git a/website/src/pages/500.tsx b/website/src/pages/500.tsx new file mode 100644 index 00000000..d6e68074 --- /dev/null +++ b/website/src/pages/500.tsx @@ -0,0 +1,32 @@ +import { Button, Link, Stack } from "@chakra-ui/react"; +import Head from "next/head"; +import NextLink from "next/link"; +import { FiAlertTriangle } from "react-icons/fi"; + +export default function Error() { + return ( + <> + + 500 - Open Assistant + + +
+ +

Sorry, We encountered a server error. We're not sure what went wrong

+

Please file a but below and describe what you were trying to accomplish

+ +
+
+ + ); +}