Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/dashboard/src/onboarding/signup-goals.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
7
export const SIGNUP_GOALS_OTHER = "other";
8
9
export const getSignupGoalsOptions = () => {
10
return [
11
{ value: "onboarding", label: "Faster onboarding" },
12
{ value: "efficiency-collab", label: "Improve developer efficiency and collaboration" },
13
{ value: "powerful-resources", label: "More powerful development resources" },
14
{ value: "security", label: "More secure development process" },
15
{ value: SIGNUP_GOALS_OTHER, label: "Other" },
16
];
17
};
18
19