privacy information

This commit is contained in:
cupcakearmy 2019-03-27 18:53:49 +01:00
parent 7151deb316
commit 613fa45f0c
2 changed files with 12 additions and 4 deletions

View File

@ -8,9 +8,9 @@ import { useInnerWindowSize } from '../util'
const Home: React.FC = () => { const Home: React.FC = () => {
const {height, width} = useInnerWindowSize() const { height, width } = useInnerWindowSize()
return <div id="home" style={{width: width + 'px', height: height + 'px'}}> return <div id="home" style={{ width: width + 'px', height: height + 'px' }}>
<Parallax> <Parallax>
<section id={'letters-container'}> <section id={'letters-container'}>
<h1> <h1>
@ -28,7 +28,13 @@ const Home: React.FC = () => {
<footer> <footer>
<span>developer.</span> <span>developer.</span>
<br/> <br/>
<span>say <a href={'mailto:hi@nicco.io'}>hi@nicco.io</a></span> <span>say <a className={'email'} href={'mailto:hi@nicco.io'}>hi@nicco.io</a></span>
<br/>
<span>
<small>
<a href={'/privacy'}>privacy</a> - <a href={'/terms-of-service'}>terms of service</a>
</small>
</span>
</footer> </footer>
</div> </div>
} }

View File

@ -17,5 +17,7 @@ footer
a a
text-decoration inherit text-decoration inherit
cursor pointer
color inherit color inherit
&.email
font-weight bold font-weight bold