Ajout d'une adresse email pour les questions sur la politique de confidentialité

This commit is contained in:
Feror 2026-02-05 15:54:29 +01:00
parent 9bc829d572
commit 62beda2bf7
2 changed files with 21 additions and 1 deletions

View file

@ -221,6 +221,19 @@ body::after {
padding-top: 1.4rem;
}
.footer p {
margin: 0;
}
.footer p + p {
margin-top: 0.45rem;
}
.footer a {
color: var(--accent-dark);
font-weight: 600;
}
.reveal {
opacity: 0;
transform: translateY(18px);

View file

@ -13,6 +13,7 @@ type CopyBlock = {
summaryText: string;
sections: { title: string; items: string[] }[];
footer: string;
contactFooter: string;
};
const copy: Record<Locale, CopyBlock> = {
@ -52,6 +53,7 @@ const copy: Record<Locale, CopyBlock> = {
},
],
footer: "This policy applies to the Negopoly Companion app and companion web experience.",
contactFooter: "For more info, contact us at",
},
fr: {
title: "Politique de confidentialite",
@ -89,6 +91,7 @@ const copy: Record<Locale, CopyBlock> = {
},
],
footer: "Cette politique s'applique a l'application Negopoly Companion et a l'experience web associee.",
contactFooter: "Pour plus d'informations, contactez-nous a",
},
};
@ -159,7 +162,11 @@ function Privacy() {
</section>
<footer className="footer reveal" style={{ "--delay": "0.42s" } as React.CSSProperties}>
{content.footer}
<p>{content.footer}</p>
<p>
{content.contactFooter}{" "}
<a href="mailto:privacy@negopoly.fr">privacy@negopoly.fr</a>
</p>
</footer>
</div>
);