Path: blob/main/components/dashboard/src/teams/policies/WorkspaceClassesEnterpriseCallout.tsx
2501 views
/**1* Copyright (c) 2025 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 { LinkButton } from "@podkit/buttons/LinkButton";7import PillLabel from "../../components/PillLabel";8import { Heading3, Subheading } from "../../components/typography/headings";9import { ConfigurationSettingsField } from "../../repositories/detail/ConfigurationSettingsField";1011export const WorkspaceClassesEnterpriseCallout = () => {12return (13<ConfigurationSettingsField className="bg-pk-surface-secondary">14<Heading3 className="flex items-center gap-4">15Additional workspace classes16<PillLabel type="warn">Enterprise</PillLabel>17</Heading3>18<Subheading>19Access to more powerful workspace classes with up to 30 cores 54GB of RAM and 100GB of storage20</Subheading>2122<div className="mt-6 flex flex-row space-x-2">23<LinkButton24variant="secondary"25className="border border-pk-content-tertiary text-pk-content-primary bg-pk-surface-primary"26href="https://www.gitpod.io/docs/configure/workspaces/workspace-classes#enterprise"27isExternalUrl={true}28>29Documentation30</LinkButton>31<LinkButton32variant="secondary"33className="border border-pk-content-tertiary text-pk-content-primary bg-pk-surface-primary"34href="https://www.gitpod.io/docs/enterprise"35isExternalUrl={true}36>37Learn more about Enterprise38</LinkButton>39</div>40</ConfigurationSettingsField>41);42};434445