Files
sign/apps/web/pages/500.jsx

34 lines
1.1 KiB
React
Raw Normal View History

import Logo from "../components/logo";
import { Button } from "@documenso/ui";
import { ArrowSmallLeftIcon } from "@heroicons/react/20/solid";
import { EllipsisVerticalIcon } from "@heroicons/react/20/solid";
2023-02-13 13:04:15 +01:00
export default function Custom500() {
2023-02-13 13:04:15 +01:00
return (
<>
2023-02-22 17:44:03 +01:00
<div className="relative flex flex-col items-center justify-center min-h-full text-white bg-black">
<div className="absolute top-10 left-10">
<Logo dark className="w-10 md:w-20" />
</div>
2023-02-22 17:44:03 +01:00
<div className="px-4 py-10 mt-20 max-w-7xl">
2023-02-23 19:04:50 +01:00
<p className="inline-flex items-center text-3xl font-bold sm:text-5xl">
500
<span className="relative px-3 font-thin sm:text-6xl -top-1.5">
|
</span>{" "}
<span className="text-base font-semibold align-middle sm:text-2xl">
Something went wrong.
</span>
</p>
<div className="flex justify-center mt-10">
2023-02-22 17:44:03 +01:00
<Button color="secondary" href="/" icon={ArrowSmallLeftIcon}>
Back to home
</Button>
</div>
</div>
</div>
2023-02-13 13:04:15 +01:00
</>
);
}