Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/dashboard/src/error-pages/ExpiredOTS.tsx
2499 views
1
/**
2
* Copyright (c) 2023 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 { FC } from "react";
8
import { Heading1, Subheading } from "../components/typography/headings";
9
import { ErrorPageLayout } from "./ErrorPageLayout";
10
import img404 from "../images/404.webp";
11
import img4042x from "../images/[email protected]";
12
13
const ExpiredOTS: FC = () => {
14
return (
15
<ErrorPageLayout>
16
<img
17
className="mb-8"
18
src={img404}
19
srcSet={`${img404} 1x, ${img4042x} 2x`}
20
alt="404 illustration"
21
width="512"
22
height="422"
23
/>
24
<Heading1>Oops!</Heading1>
25
<Subheading className="mt-4">The setup link expired.</Subheading>
26
27
<Subheading className="mt-4">Please contact Gitpod to receive a new link.</Subheading>
28
</ErrorPageLayout>
29
);
30
};
31
32
export default ExpiredOTS;
33
34