Correction du chemin vers la page stratégie

- Les fichiers dans public/ sont servis à la racine, pas sous /business/
- Correction du lien pour pointer vers /strategie.html
This commit is contained in:
syoul
2025-12-02 18:31:28 +01:00
parent 35c32a6e2d
commit ca7f3bbf47
2 changed files with 3 additions and 3 deletions

View File

@@ -19,7 +19,7 @@
if (footer) {
// Créer le lien vers la stratégie
const strategyLink = document.createElement('a');
strategyLink.href = '/business/strategie.html';
strategyLink.href = '/strategie.html';
strategyLink.textContent = '📋 Voir la Stratégie';
strategyLink.style.marginLeft = '10px';
strategyLink.style.color = '#2ecc71';
@@ -41,7 +41,7 @@
if (header) {
const strategyLink = document.createElement('a');
strategyLink.href = '/business/strategie.html';
strategyLink.href = '/strategie.html';
strategyLink.textContent = 'Stratégie';
strategyLink.style.marginLeft = '15px';
strategyLink.style.color = '#2ecc71';