PromucFlow_constructor/app/client/src/pages/setup/constants.ts
balajisoundar 95c729d7d1
feat: Introduce a Welcome screen and a form to create a super user, on a fresh installation (#6806)
This commit introduces a super user signup form, that appears only on an empty instance, to create a super user.

fixes: #6934
2021-09-12 22:06:43 +05:30

51 lines
769 B
TypeScript

export type OptionType = {
label?: string;
value?: string;
};
export const roleOptions: OptionType[] = [
{
label: "Engineer",
value: "engineer",
},
{
label: "Product manager",
value: "product manager",
},
{
label: "Founder",
value: "founder",
},
{
label: "Operations",
value: "operations",
},
{
label: "Business Analyst",
value: "business analyst",
},
{
label: "Other",
value: "other",
},
];
export const useCaseOptions: OptionType[] = [
{
label: "Just Exploring",
value: "just exploring",
},
{
label: "Personal Project",
value: "personal project",
},
{
label: "Work Project",
value: "work project",
},
{
label: "Other",
value: "other",
},
];