export function formatPrice(cents: number, suffix?: string | null) {
  const euros = Math.round(cents / 100);
  return `${euros}€${suffix ?? ""}`;
}
