-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathFooter.js
54 lines (52 loc) · 1.17 KB
/
Footer.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import Link from "next/link";
export default function Footer() {
return (
<>
<style jsx>
{`
.Footer {
grid-area: Footer;
font-size: 1rem;
padding: 1rem;
text-align: center;
position: relative;
border-top: 1px solid white;
color: white;
background-color: #013373;
}
a {
color: white;
text-decoration: none;
}
a:hover {
color: rgb(10, 198, 255);
text-decoration: none;
}
.Footer nav {
display: inline-block;
}
`}
</style>
<footer className="Footer">
<nav aria-label="Footer">
<ul className="menu">
<li>
<Link href="/privacy">
<a>Privacy</a>
</Link>
</li>
<li>
<Link href="/contact">
<a>Imprint</a>
</Link>
</li>
</ul>
</nav>
<br />
<br />
© 2020 Realigned Technologies Ltd
<br />
</footer>
</>
);
}