Skip to content

Commit

Permalink
Add term of use and trademark links (#2949)
Browse files Browse the repository at this point in the history
  • Loading branch information
timotheeguerin authored Feb 23, 2024
1 parent 15702e8 commit e9b17b3
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
2 changes: 2 additions & 0 deletions packages/website/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,6 @@ export const Links = {

// Microsoft links
privacy: "https://go.microsoft.com/fwlink/?LinkId=521839",
termsOfUse: "https://www.microsoft.com/legal/terms-of-use",
trademark: "https://www.microsoft.com/legal/intellectualproperty/trademarks",
};
18 changes: 15 additions & 3 deletions packages/website/src/theme/Footer/Layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,21 @@ export default function FooterLayout({ style: theme, links, copyright }) {
<div>{copyright}</div>
</div>
<div className={style["general-links"]}>
<Link href={Links.privacy} title="Microsoft Privacy Policy">
Privacy
</Link>
<div>
<Link href={Links.privacy} title="Microsoft Privacy Policy">
Privacy
</Link>
</div>
<div>
<Link href={Links.termsOfUse} title="Microsoft Terms Of Use">
Terms of use
</Link>
</div>
<div>
<Link href={Links.trademark} title="Microsoft Trademarks">
Trademarks
</Link>
</div>
</div>
</div>
</footer>
Expand Down

0 comments on commit e9b17b3

Please sign in to comment.