diff --git a/apps/web/components/logo.tsx b/apps/web/components/logo.tsx index 9bce939fa..5a70b8a56 100644 --- a/apps/web/components/logo.tsx +++ b/apps/web/components/logo.tsx @@ -1,3 +1,4 @@ +import { classNames } from "@documenso/lib"; import Link from "next/link"; export default function Logo(props: any) { @@ -17,7 +18,7 @@ export default function Logo(props: any) { diff --git a/apps/web/pages/404.jsx b/apps/web/pages/404.jsx index cda9ebbdc..615766083 100644 --- a/apps/web/pages/404.jsx +++ b/apps/web/pages/404.jsx @@ -7,7 +7,9 @@ export default function Custom404() { return ( <>
- +
+ +

404

diff --git a/apps/web/pages/500.jsx b/apps/web/pages/500.jsx index b344d947d..1aab5c936 100644 --- a/apps/web/pages/500.jsx +++ b/apps/web/pages/500.jsx @@ -1,10 +1,33 @@ -import Link from "next/link"; +import Logo from "../components/logo"; +import { Button } from "@documenso/ui"; +import { ArrowSmallLeftIcon } from "@heroicons/react/20/solid"; +import { EllipsisVerticalIcon } from "@heroicons/react/20/solid"; -export default function FiveUhOh() { +export default function Custom500() { return ( <> -

500 - Something went wrong.

- Go back home +
+
+ +
+ +
+

+ 500 + + | + {" "} + + Something went wrong. + +

+
+ +
+
+
); }