Linking privacy policy in the footer

This commit is contained in:
Jeff Avallone
2018-05-24 17:56:35 -04:00
parent 821c2eb7fe
commit 54a45ea3be
3 changed files with 13 additions and 0 deletions
@@ -30,6 +30,15 @@ exports[`Footer rendering 1`] = `
</a>
</Trans>
</li>
<li>
<a
href="/privacy.html"
>
<Trans>
Privacy Policy
</Trans>
</a>
</li>
</ul>
</footer>
`;
+3
View File
@@ -18,6 +18,9 @@ const Footer = () => (
</a>
</Trans>
</li>
<li>
<a href="/privacy.html"><Trans>Privacy Policy</Trans></a>
</li>
</ul>
</footer>
);