export interface Temoignage {
  id: number;
  auteur: string;
  entreprise: string | null;
  photoUrl: string | null;
  contenu: string;
  note: number;
}
