fix(contact/footer): distingue les chaînes PAWOL.NU et met à jour WhatsApp

- Met à jour le lien WhatsApp vers la chaîne publique
- Regroupe WhatsApp et Telegram sous une section Chaînes PAWOL.NU
- Affiche les titres de section dans la page contact pour distinguer les chaînes
- Met à jour les tooltips du footer pour indiquer les chaînes PAWOL.NU
This commit is contained in:
2026-07-09 02:38:30 +04:00
parent e2df9c0501
commit 1189141937
5 changed files with 59 additions and 28 deletions
+28 -2
View File
@@ -1197,13 +1197,32 @@ html.light-theme .hero::before {
}
.contact-socials {
display: flex;
flex-direction: column;
align-items: center;
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}
.contact-socials-group {
text-align: center;
}
.contact-socials-title {
font-size: 0.85rem;
font-weight: 600;
color: var(--or-oki);
margin-bottom: 0.75rem;
opacity: 0.9;
}
.contact-socials-row {
display: flex;
justify-content: center;
align-items: center;
gap: 1.5rem;
flex-wrap: wrap;
max-width: 1200px;
margin: 0 auto;
}
.contact-social-link {
@@ -1231,6 +1250,13 @@ html.light-theme .hero::before {
@media (min-width: 768px) {
.contact-socials {
flex-direction: row;
align-items: flex-start;
justify-content: center;
gap: 3rem;
}
.contact-socials-row {
gap: 2rem;
}