Added links on footer

This commit is contained in:
samueloh99
2023-06-30 18:24:58 -03:00
parent e381705d5a
commit 7a85d1b7a2
2 changed files with 16 additions and 2 deletions

View File

@@ -75,8 +75,20 @@ export function SiteFooter() {
</NextLink>
</div>
<div className="flex gap-5 text-white">
<h1>Privacy Policy</h1>
<h1>Terms of use</h1>
<NextLink
href={siteConfig.links.privacyPolicy}
target="_blank"
rel="noreferrer"
>
<h1>Privacy Policy</h1>
</NextLink>
<NextLink
href={siteConfig.links.termOfUse}
target="_blank"
rel="noreferrer"
>
<h1>Terms of use</h1>
</NextLink>
</div>
<h1 className="text-gray-400">Last updated June 8, 2023</h1>
</div>

View File

@@ -21,5 +21,7 @@ export const siteConfig = {
discord: "https://discord.com/invite/sF5CT5rzrR",
articles: "https://mirror.xyz/privacy-scaling-explorations.eth",
jobs: "https://jobs.lever.co/ethereumfoundation/?department=Ethereum%20Foundation&team=Privacy%20and%20Scaling%20Explorations",
termOfUse: "https://ethereum.org/en/terms-of-use/",
privacyPolicy: "https://ethereum.org/en/privacy-policy/",
},
}