Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/dashboard/src/teams/policies/WorkspaceClassesEnterpriseCallout.tsx
2501 views
1
/**
2
* Copyright (c) 2025 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 { LinkButton } from "@podkit/buttons/LinkButton";
8
import PillLabel from "../../components/PillLabel";
9
import { Heading3, Subheading } from "../../components/typography/headings";
10
import { ConfigurationSettingsField } from "../../repositories/detail/ConfigurationSettingsField";
11
12
export const WorkspaceClassesEnterpriseCallout = () => {
13
return (
14
<ConfigurationSettingsField className="bg-pk-surface-secondary">
15
<Heading3 className="flex items-center gap-4">
16
Additional workspace classes
17
<PillLabel type="warn">Enterprise</PillLabel>
18
</Heading3>
19
<Subheading>
20
Access to more powerful workspace classes with up to 30 cores 54GB of RAM and 100GB of storage
21
</Subheading>
22
23
<div className="mt-6 flex flex-row space-x-2">
24
<LinkButton
25
variant="secondary"
26
className="border border-pk-content-tertiary text-pk-content-primary bg-pk-surface-primary"
27
href="https://www.gitpod.io/docs/configure/workspaces/workspace-classes#enterprise"
28
isExternalUrl={true}
29
>
30
Documentation
31
</LinkButton>
32
<LinkButton
33
variant="secondary"
34
className="border border-pk-content-tertiary text-pk-content-primary bg-pk-surface-primary"
35
href="https://www.gitpod.io/docs/enterprise"
36
isExternalUrl={true}
37
>
38
Learn more about Enterprise
39
</LinkButton>
40
</div>
41
</ConfigurationSettingsField>
42
);
43
};
44
45