diff --git a/front/privacy.css b/front/privacy.css index e0debfa..b5a58d4 100644 --- a/front/privacy.css +++ b/front/privacy.css @@ -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); diff --git a/front/privacy.tsx b/front/privacy.tsx index b8d9203..afa0dc5 100644 --- a/front/privacy.tsx +++ b/front/privacy.tsx @@ -13,6 +13,7 @@ type CopyBlock = { summaryText: string; sections: { title: string; items: string[] }[]; footer: string; + contactFooter: string; }; const copy: Record = { @@ -52,6 +53,7 @@ const copy: Record = { }, ], 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 = { }, ], 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() { );