Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/dashboard/src/onboarding/exploration-reasons.ts
2500 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
export const EXPLORE_REASON_WORK = "explore-professional";
7
8
export const getExplorationReasons = () => {
9
return [
10
{ value: EXPLORE_REASON_WORK, label: "Work" },
11
{ value: "explore-personal", label: "Personal projects or open-source development" },
12
{
13
value: "replace-remote-dev",
14
label: "Replacing remote or containerized development (i.e. VDI, VM, Docker Desktop)",
15
},
16
];
17
};
18
19