2022-02-18 17:33:18 +00:00
|
|
|
|
import Head from "next/head";
|
|
|
|
|
|
2022-03-16 23:36:43 +00:00
|
|
|
|
import Button from "@calcom/ui/Button";
|
2022-02-18 17:33:18 +00:00
|
|
|
|
|
|
|
|
|
export default function Error500() {
|
|
|
|
|
return (
|
|
|
|
|
<div className="flex h-screen">
|
|
|
|
|
<Head>
|
|
|
|
|
<title>Something unexpected occurred | Cal.com</title>
|
|
|
|
|
<link rel="icon" href="/favicon.ico" />
|
|
|
|
|
</Head>
|
|
|
|
|
<div className="m-auto text-center">
|
|
|
|
|
<h1 className="font-cal text-[250px] text-gray-900">
|
2022-03-14 19:39:37 +00:00
|
|
|
|
5<img src="/error.svg" className="-mt-10 inline w-60" />0
|
2022-02-18 17:33:18 +00:00
|
|
|
|
</h1>
|
2022-03-14 11:59:05 +00:00
|
|
|
|
<h2 className="mb-2 -mt-16 text-3xl text-gray-600">It's not you, it's us.</h2>
|
2022-03-14 19:39:37 +00:00
|
|
|
|
<p className="mb-4 max-w-2xl text-gray-500">
|
2022-02-18 17:33:18 +00:00
|
|
|
|
Something went wrong on our end. Get in touch with our support team, and we’ll get it fixed right
|
|
|
|
|
away for you.
|
|
|
|
|
</p>
|
|
|
|
|
<Button href="https://cal.com/support">Contact support</Button>
|
|
|
|
|
<Button color="secondary" href="javascript:history.back()" className="ml-2">
|
|
|
|
|
Go back
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|