Skip to content

Commit

Permalink
Add privacy policy link to footer
Browse files Browse the repository at this point in the history
  • Loading branch information
aelassas committed Jan 19, 2025
1 parent f11d5ab commit 6433f03
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions frontend/src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ const Footer = () => {
<div className="title">{strings.CORPORATE}</div>
<ul className="links">
<li onClick={() => navigate('/about')}>{strings.ABOUT}</li>
<li onClick={() => navigate('/privacy')}>{strings.PRIVACY_POLICY}</li>
<li onClick={() => navigate('/tos')}>{strings.TOS}</li>
</ul>
</div>
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/lang/footer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ const strings = new LocalizedStrings({
SUPPORT: 'Support',
CONTACT: 'Contact',
SECURE_PAYMENT: `Paiement 100% sécurisé avec ${env.WEBSITE_NAME}`,
PRIVACY_POLICY: 'Politique de Confidentialité',
},
en: {
COPYRIGHT_PART1,
Expand All @@ -32,6 +33,7 @@ const strings = new LocalizedStrings({
SUPPORT: 'Support',
CONTACT: 'Contact',
SECURE_PAYMENT: `100% secure payment with ${env.WEBSITE_NAME}`,
PRIVACY_POLICY: 'Privacy Policy',
},
})

Expand Down

0 comments on commit 6433f03

Please sign in to comment.