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