// ----------------------------------------------------------------------------- // Rent-Ka — Rental listings aggregator (Canada, outside Québec) // Author: Simon-Pierre Boucher — contact@spboucher.ai // components/HiverScore.tsx: "Winter Score" block (detail page) // Can you run your daily errands on foot at −20 °C? Deterministic 0-100 // score (rentka/hiver.py): grocery, pharmacy, bus, convenience store within // walking distance. The methodology owns what is NOT taken into account. // ----------------------------------------------------------------------------- import { Hiver } from "../api"; const NBSP = " "; const CLS: Record = { // backend classes (kept bilingual for safety during migration) "very practical": "zi-ok", "practical": "zi-ok", "demanding": "zi-modere", "difficult": "zi-eleve", "très pratique": "zi-ok", "pratique": "zi-ok", "exigeant": "zi-modere", "difficile": "zi-eleve", }; export default function HiverScore({ h }: { h: Hiver }) { return (

Winter Score

{h.score} {h.classe} daily errands on foot, even at −20{NBSP}°C

{h.methode}

); }