1
0
Fork 0
mirror of https://github.com/voltbonn/profile-picture-generator.git synced 2024-12-22 07:45:04 +00:00

added footer with imprint, privacy policy and sourcecode links

This commit is contained in:
thomasrosen 2021-01-23 19:20:21 +01:00
parent 1ad43ddf64
commit 7bd2d9fd54
2 changed files with 15 additions and 0 deletions

View file

@ -41,6 +41,13 @@ p{
width: calc(40vh + 15vw);
}
a{
color: white;
}
a:hover{
color: rgba(255,255,255,0.8);
}
.HeaderImage{
height: calc(10px + 30vmin);
max-width: 100%;

View file

@ -317,6 +317,14 @@ function App() {
<button onClick={handleDownload}>Download Profile Picture</button>
</>) : null}
<footer>
<a href="https://www.voltdeutschland.org/impressum">Imprint</a>
&nbsp; &nbsp;
<a href="https://www.voltdeutschland.org/datenschutz">Privacy Policy</a>
&nbsp; &nbsp;
<a href="https://github.com/voltbonn/profile-picture-generator">Source Code</a>
</footer>
</div>
)
}