WIP jordan

This commit is contained in:
Jordan Weingarten
2026-04-16 11:11:44 -05:00
parent ff2d7b18b5
commit 67482f6629
163 changed files with 50627 additions and 728 deletions

34
app/data/taxonomy.ts Normal file
View File

@@ -0,0 +1,34 @@
export const INSURER_SLUGS = [
'acerta',
'assa',
'ancon',
'fedpa',
'mapfre',
'optima',
'palig'
] as const
export type InsurerSlug = (typeof INSURER_SLUGS)[number]
export const PRODUCT_LINE_SLUGS = [
'life',
'health_local',
'health_international',
'auto_full_coverage',
'auto_dat_liability',
'home',
'general_liability',
'any'
] as const
export type ProductLineSlug = (typeof PRODUCT_LINE_SLUGS)[number]
export const INSURER_LABEL: Record<string, string> = {
acerta: 'ACERTA',
assa: 'ASSA',
ancon: 'ANCON',
fedpa: 'FEDPA',
mapfre: 'MAPFRE',
optima: 'OPTIMA',
palig: 'PALIG'
}