Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/dashboard/src/app/Blocked.tsx
2499 views
1
/**
2
* Copyright (c) 2022 Gitpod GmbH. All rights reserved.
3
* Licensed under the GNU Affero General Public License (AGPL).
4
* See License.AGPL.txt in the project root for license information.
5
*/
6
7
import { FunctionComponent } from "react";
8
import gitpodIcon from "../icons/gitpod.svg";
9
import { Button } from "@podkit/buttons/Button";
10
import { Heading1, Subheading } from "@podkit/typography/Headings";
11
12
export const Blocked: FunctionComponent = () => {
13
return (
14
<div className="mt-48 text-center">
15
<img src={gitpodIcon} className="h-16 mx-auto" alt="Gitpod's logo" />
16
<Heading1 className="mt-12">Your account has been blocked.</Heading1>
17
<Subheading className="mt-4 mb-8 w-96 mx-auto">
18
Please contact support if you think this is an error. See also{" "}
19
<a className="gp-link" href="https://www.gitpod.io/terms/">
20
terms of service
21
</a>
22
.
23
</Subheading>
24
<a className="mx-auto" href="mailto:[email protected]?Subject=Blocked">
25
<Button variant="secondary">Contact Support</Button>
26
</a>
27
</div>
28
);
29
};
30
31