Skip to content

Commit

Permalink
feat: Add Feature Request in the footer (#505)
Browse files Browse the repository at this point in the history
  • Loading branch information
LautaroPetaccio authored Jan 30, 2024
1 parent d9c6a44 commit 212bbd1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export type LinksI18N = {
terms: React.ReactNode
content: React.ReactNode
ethics: React.ReactNode
feature: React.ReactNode
}

export type FooterI18N = {
Expand Down Expand Up @@ -47,7 +48,8 @@ export class Footer extends React.PureComponent<FooterProps> {
privacy: 'Privacy Policy',
terms: 'Terms of Use',
content: 'Content Policy',
ethics: 'Code of Ethics'
ethics: 'Code of Ethics',
feature: 'Feature Request'
}
}
}
Expand Down Expand Up @@ -91,6 +93,7 @@ export class Footer extends React.PureComponent<FooterProps> {
<a href="https://decentraland.org/terms">{i18n.links.terms}</a>
<a href="https://decentraland.org/content">{i18n.links.content}</a>
<a href="https://decentraland.org/ethics">{i18n.links.ethics}</a>
<a href="https://decentraland.canny.io">{i18n.links.feature}</a>
</div>
</div>
<div className="secondary-footer">
Expand Down

0 comments on commit 212bbd1

Please sign in to comment.