// Auteur : Simon-Pierre Boucher — contact@spboucher.ai "use client"; import MapSearch from "@/components/MapSearch"; import { useLang } from "@/components/LangContext"; export default function CartePage() { const { lang } = useLang(); const fr = lang === "fr"; return (

{fr ? "Recherche par carte" : "Map search"}

{fr ? "Votre quartier, " : "Your neighbourhood, "} {fr ? "estimé" : "appraised"}

{fr ? "Déplacez la carte ou géolocalisez-vous : chaque point est une unité d'évaluation avec son estimation 2026. Touchez un point pour l'aperçu, puis passez à l'estimation complète." : "Pan the map or use your location: every dot is an assessment unit with its 2026 estimate. Tap a dot for a preview, then get the full estimate."}

{fr ? "Fond de carte © OpenStreetMap · Estimations statistiques à titre indicatif (OEAQ)." : "Basemap © OpenStreetMap · Statistical estimates for information only (OEAQ)."}

); }