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> </a>
</Trans> </Trans>
</li> </li>
<li>
<a
href="/privacy.html"
>
<Trans>
Privacy Policy
</Trans>
</a>
</li>
</ul> </ul>
<div <div
className="buildId" className="buildId"

View File

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

View File

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

View File

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