Moving Privacy Policy link to the header

This commit is contained in:
Jeff Avallone 2018-06-01 17:18:23 -04:00
parent 81aceeba5f
commit 9ff0a51006
4 changed files with 12 additions and 12 deletions

View File

@ -30,15 +30,6 @@ exports[`Footer rendering 1`] = `
</a>
</Trans>
</li>
<li>
<a
href="/privacy.html"
>
<Trans>
Privacy Policy
</Trans>
</a>
</li>
</ul>
<div
className="buildId"

View File

@ -18,9 +18,6 @@ const Footer = () => (
</a>
</Trans>
</li>
<li>
<a href="/privacy.html"><Trans>Privacy Policy</Trans></a>
</li>
</ul>
<div className={ style.buildId }>{ process.env.BUILD_ID }</div>
</footer>

View File

@ -25,6 +25,15 @@ exports[`Header rendering 1`] = `
</Trans>
</a>
</li>
<li>
<a
href="/privacy.html"
>
<Trans>
Privacy Policy
</Trans>
</a>
</li>
<li>
<Translate(LocaleSwitcher) />
</li>

View File

@ -16,6 +16,9 @@ const Header = () => (
<li><a href="https://github.com/javallone/regexper-static" rel="external noopener noreferrer" target="_blank">
<GithubIcon/><Trans>Source on GitHub</Trans>
</a></li>
<li>
<a href="/privacy.html"><Trans>Privacy Policy</Trans></a>
</li>
<li><LocaleSwitcher /></li>
</ul>
</header>