46 lines
2.0 KiB
TypeScript
46 lines
2.0 KiB
TypeScript
/** Life quoting — mock carriers, plans, and option lists. */
|
|
|
|
export const LIFE_QUOTE_CARRIERS: { id: string; name: string; detail: string }[] = [
|
|
{ id: 'vida_plena', name: 'Vida Plena', detail: 'Quoting email on file in provider profile' },
|
|
{ id: 'seguros_del_pacifico', name: 'Seguros del Pacífico', detail: 'Quoting email on file in provider profile' },
|
|
{ id: 'continental_life', name: 'Continental Life', detail: 'Quoting email on file in provider profile' }
|
|
]
|
|
|
|
export const LIFE_COVERAGE_PLANS: { id: string; label: string; hint: string }[] = [
|
|
{ id: 'term_basic', label: 'Term life · Basic', hint: 'Level-premium term, standard coverage' },
|
|
{ id: 'term_plus', label: 'Term life · Plus', hint: 'Term with accidental-death rider' },
|
|
{ id: 'whole_life', label: 'Whole life', hint: 'Permanent coverage with cash-value component' },
|
|
{ id: 'keyman', label: 'Key person', hint: 'Business-owned policy on key employee' }
|
|
]
|
|
|
|
export const LIFE_GENDER_OPTIONS: { label: string; value: string }[] = [
|
|
{ label: 'Male', value: 'male' },
|
|
{ label: 'Female', value: 'female' }
|
|
]
|
|
|
|
export const LIFE_COVERAGE_TERM_OPTIONS: { label: string; value: string }[] = [
|
|
{ label: '10 years', value: '10' },
|
|
{ label: '15 years', value: '15' },
|
|
{ label: '20 years', value: '20' },
|
|
{ label: '30 years', value: '30' },
|
|
{ label: 'Whole life', value: 'whole' }
|
|
]
|
|
|
|
export const LIFE_COVERAGE_AMOUNT_OPTIONS: { label: string; value: string }[] = [
|
|
{ label: '$25,000', value: '25000' },
|
|
{ label: '$50,000', value: '50000' },
|
|
{ label: '$100,000', value: '100000' },
|
|
{ label: '$250,000', value: '250000' },
|
|
{ label: '$500,000', value: '500000' },
|
|
{ label: '$1,000,000', value: '1000000' }
|
|
]
|
|
|
|
export const LIFE_BENEFICIARY_RELATIONSHIP_OPTIONS: { label: string; value: string }[] = [
|
|
{ label: 'Spouse', value: 'spouse' },
|
|
{ label: 'Child', value: 'child' },
|
|
{ label: 'Parent', value: 'parent' },
|
|
{ label: 'Sibling', value: 'sibling' },
|
|
{ label: 'Business entity', value: 'business' },
|
|
{ label: 'Other', value: 'other' }
|
|
]
|