export interface Place { id: string; name: string; category: string; description: string; image: string; location: { lat: number; lng: number; address: string; }; type?: string; keywords?: string[]; contact?: string; gmapLink?: string; conseil?: string; horaires?: string; }