Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/dashboard/src/onboarding/job-roles.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 JOB_ROLE_OTHER = "other";
8
9
export const getJobRoleOptions = () => {
10
return [
11
{ value: "", label: "Please select one" },
12
{ value: "software-eng", label: "Software Engineering" },
13
{ value: "data", label: "Data / Analytics" },
14
{ value: "academics", label: "Academia (Student, Researcher)" },
15
{ value: "enabling", label: "DevOps / Platform / DevX" },
16
{ value: "team-lead", label: "A Team Lead or Function Lead role" },
17
{ value: "devrel", label: "DevRel" },
18
{ value: "product-design", label: "Product" },
19
{ value: JOB_ROLE_OTHER, label: "Other" },
20
];
21
};
22
23