/**
 * Source unique des routes du site.
 *
 * Ajouter une route ici :
 *  1. L'ajoute automatiquement au sitemap.xml (genere au build)
 *  2. Doit etre associee a un composant dans App.tsx (componentMap)
 */

export interface RouteEntry {
  path: string;
  /** Frequence de modification pour le sitemap */
  changefreq: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never";
  /** Priorite de 0.0 a 1.0 pour le sitemap */
  priority: number;
}

export const routes: RouteEntry[] = [
  { path: "/", changefreq: "weekly", priority: 1.0 },
  { path: "/diagnostic", changefreq: "monthly", priority: 0.8 },
  { path: "/estimation", changefreq: "monthly", priority: 0.8 },
  { path: "/nos-solutions-cool-roof", changefreq: "monthly", priority: 0.9 },
  { path: "/peinture-reflective-covatherm", changefreq: "monthly", priority: 0.9 },
  { path: "/laque-solaire-covatherm-light", changefreq: "monthly", priority: 0.9 },
  { path: "/covaseal", changefreq: "monthly", priority: 0.9 },
  { path: "/covametal", changefreq: "monthly", priority: 0.9 },
  { path: "/toitures/membrane-bitumineuse", changefreq: "monthly", priority: 0.85 },
  { path: "/toitures/bac-acier", changefreq: "monthly", priority: 0.85 },
  { path: "/toitures/toiture-plate", changefreq: "monthly", priority: 0.82 },
  { path: "/toitures/fibrociment", changefreq: "monthly", priority: 0.8 },
  { path: "/toitures/tuiles-ciment", changefreq: "monthly", priority: 0.75 },
  { path: "/industrie", changefreq: "monthly", priority: 0.9 },
  { path: "/logistique", changefreq: "monthly", priority: 0.85 },
  { path: "/distribution", changefreq: "monthly", priority: 0.85 },
  { path: "/tertiaire", changefreq: "monthly", priority: 0.85 },
  { path: "/collectivité", changefreq: "monthly", priority: 0.85 },
  { path: "/industries/agricole", changefreq: "monthly", priority: 0.85 },
  { path: "/industries/erp", changefreq: "monthly", priority: 0.85 },
  { path: "/devenir-applicateur", changefreq: "monthly", priority: 0.8 },
  { path: "/qui-sommes-nous", changefreq: "monthly", priority: 0.7 },
  { path: "/bat-en-112", changefreq: "monthly", priority: 0.85 },
  { path: "/contact", changefreq: "monthly", priority: 0.7 },
  { path: "/guides", changefreq: "weekly", priority: 0.75 },
  { path: "/hub/aides-obligations", changefreq: "monthly", priority: 0.7 },
  { path: "/hub/chaleur-travail", changefreq: "monthly", priority: 0.7 },
  { path: "/hub/etancheite", changefreq: "monthly", priority: 0.7 },
  { path: "/hub/isolation", changefreq: "monthly", priority: 0.7 },
  { path: "/hub/peintures", changefreq: "monthly", priority: 0.7 },
  { path: "/guide-cool-roof", changefreq: "monthly", priority: 0.75 },
  { path: "/simulateur-economie-energie", changefreq: "monthly", priority: 0.75 },
  { path: "/faq", changefreq: "monthly", priority: 0.7 },
  { path: "/references", changefreq: "monthly", priority: 0.7 },
  { path: "/cool-roof-roche-bobois", changefreq: "monthly", priority: 0.65 },
  { path: "/presse", changefreq: "monthly", priority: 0.6 },
  { path: "/mentions-legales", changefreq: "yearly", priority: 0.4 },
  // Les routes locales SEO (/:slug) sont générées dynamiquement
  // et ne sont pas listées ici pour le sitemap statique.
  // Le sitemap programmatic sera généré séparément à partir du fichier Excel.
];
