export const SIGNUP_GOALS_OTHER = "other";
export const getSignupGoalsOptions = () => {
return [
{ value: "onboarding", label: "Faster onboarding" },
{ value: "efficiency-collab", label: "Improve developer efficiency and collaboration" },
{ value: "powerful-resources", label: "More powerful development resources" },
{ value: "security", label: "More secure development process" },
{ value: SIGNUP_GOALS_OTHER, label: "Other" },
];
};