This commit is contained in:
19
app/constants/metier.ts
Normal file
19
app/constants/metier.ts
Normal file
@ -0,0 +1,19 @@
|
||||
import type { BienType } from '@/types/collections';
|
||||
|
||||
export const TYPES_BIENS: Record<BienType, string> = {
|
||||
appartement: 'Appartement',
|
||||
maison: 'Maison',
|
||||
immeuble: 'Immeuble',
|
||||
terrain: 'Terrain',
|
||||
local_commercial: 'Local commercial',
|
||||
parking: 'Parking',
|
||||
cave: 'Cave',
|
||||
autre: 'Autre',
|
||||
};
|
||||
|
||||
export const AVIS_VISITE: Record<string, { label: string }> = {
|
||||
coup_de_coeur: { label: 'Coup de cœur' },
|
||||
interessant: { label: 'Intéressant' },
|
||||
neutre: { label: 'Neutre' },
|
||||
a_eviter: { label: 'À éviter' },
|
||||
};
|
||||
Reference in New Issue
Block a user