Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | 10x 10x 10x 10x 10x | /**
* Shared constants for pro form section components.
* These constants define dropdown options, checkboxes, and other static data
* used across multiple form sections.
*/
/**
* Available service types that pros can offer.
* Used in the Basic Information section for service checkboxes.
*/
export const SERVICES = [
"modular_kitchen",
"furniture",
"full_interior",
"wardrobe",
"false_ceiling",
"tv_unit",
"pooja_unit",
"painting",
"flooring",
"electrical",
] as const;
/**
* Languages that pro teams can communicate in.
* Used in the Business Details section.
*/
export const LANGUAGES = [
{ value: "english", label: "English" },
{ value: "hindi", label: "Hindi" },
{ value: "telugu", label: "Telugu" },
{ value: "marathi", label: "Marathi" },
{ value: "kannada", label: "Kannada" },
{ value: "tamil", label: "Tamil" },
] as const;
/**
* Team size options for pros.
* Used in the Business Details section.
*/
export const TEAM_SIZES = [
{ value: "solo", label: "Solo" },
{ value: "2-5", label: "2-5 people" },
{ value: "6-10", label: "6-10 people" },
{ value: "11-25", label: "11-25 people" },
{ value: "25+", label: "25+ people" },
] as const;
/**
* Suggested timeline phrases for typical project durations.
* Used in the Business Details section to help pros describe their typical delivery times.
*/
export const TIMELINE_SUGGESTIONS = [
"2-4 weeks for modular kitchen",
"1-2 weeks for wardrobes",
"4-6 weeks for full home interiors",
"Same day installation available",
"Express delivery in 7 days",
"Weekend installations available",
"Flexible scheduling",
"3-4 weeks standard delivery",
] as const;
/**
* Rush order premium percentage options.
* Used in the Rush Orders section when pros accept rush orders.
*/
export const RUSH_ORDER_PREMIUMS = [
{ value: "10_percent", label: "10% extra" },
{ value: "20_percent", label: "20% extra" },
{ value: "30_percent", label: "30% extra" },
{ value: "50_percent", label: "50% extra" },
{ value: "case_by_case", label: "Case by case" },
] as const;
|