Path: blob/main/components/dashboard/src/error-pages/ExpiredOTS.tsx
2499 views
/**1* Copyright (c) 2023 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 { FC } from "react";7import { Heading1, Subheading } from "../components/typography/headings";8import { ErrorPageLayout } from "./ErrorPageLayout";9import img404 from "../images/404.webp";10import img4042x from "../images/[email protected]";1112const ExpiredOTS: FC = () => {13return (14<ErrorPageLayout>15<img16className="mb-8"17src={img404}18srcSet={`${img404} 1x, ${img4042x} 2x`}19alt="404 illustration"20width="512"21height="422"22/>23<Heading1>Oops!</Heading1>24<Subheading className="mt-4">The setup link expired.</Subheading>2526<Subheading className="mt-4">Please contact Gitpod to receive a new link.</Subheading>27</ErrorPageLayout>28);29};3031export default ExpiredOTS;323334