portal(vue): footer uses RouterLink (was raw <a href>, dropped /next base)

Footer internal links were absolute anchors copied verbatim from React (correct
at root, but under /next they jumped out to the React site). Switched the 7
route links to RouterLink so the router base is applied; hash (#apropos/#contact)
and external (store.targo.ca) links left as-is. Verified: footer now links
/next/internet, /next/support, /next/accessibilite, etc.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
louispaulb 2026-07-06 22:10:08 -04:00
parent fbb7de935f
commit d8052bb17c

View File

@ -23,10 +23,10 @@ La fiabilité, la performance et l'expertise à proximité pour propulser vos co
<div>
<h4 class="font-display font-bold mb-6 text-lg">Services</h4>
<ul class="space-y-3 text-sm text-white/60">
<li><a href="/internet" class="hover:text-targo-green transition-colors">Internet</a></li>
<li><a href="/television" class="hover:text-targo-green transition-colors">Télévision</a></li>
<li><a href="/telephone" class="hover:text-targo-green transition-colors">Téléphone</a></li>
<li><a href="/support" class="hover:text-targo-green transition-colors">Support</a></li>
<li><RouterLink to="/internet" class="hover:text-targo-green transition-colors">Internet</RouterLink></li>
<li><RouterLink to="/television" class="hover:text-targo-green transition-colors">Télévision</RouterLink></li>
<li><RouterLink to="/telephone" class="hover:text-targo-green transition-colors">Téléphone</RouterLink></li>
<li><RouterLink to="/support" class="hover:text-targo-green transition-colors">Support</RouterLink></li>
</ul>
</div>
@ -37,7 +37,7 @@ La fiabilité, la performance et l'expertise à proximité pour propulser vos co
<li><a href="#apropos" class="hover:text-targo-green transition-colors">À propos</a></li>
<li><a href="#contact" class="hover:text-targo-green transition-colors">Contact</a></li>
<li><a href="https://store.targo.ca/clients" class="hover:text-targo-green transition-colors">Mon compte</a></li>
<li><a href="/politique-de-confidentialite" class="hover:text-targo-green transition-colors">Politique de confidentialité</a></li>
<li><RouterLink to="/politique-de-confidentialite" class="hover:text-targo-green transition-colors">Politique de confidentialité</RouterLink></li>
</ul>
</div>
@ -84,8 +84,8 @@ La fiabilité, la performance et l'expertise à proximité pour propulser vos co
© {{ currentYear }} TARGO Communications. Tous droits réservés.
</p>
<div class="flex items-center gap-8 text-xs font-semibold uppercase tracking-wider text-white/40">
<a href="/accessibilite" class="hover:text-targo-green transition-all">Plan d'accessibilité</a>
<a href="/politique-de-confidentialite" class="hover:text-targo-green transition-all">Conditions d'utilisation</a>
<RouterLink to="/accessibilite" class="hover:text-targo-green transition-all">Plan d'accessibilité</RouterLink>
<RouterLink to="/politique-de-confidentialite" class="hover:text-targo-green transition-all">Conditions d'utilisation</RouterLink>
</div>
</div>
</div>