-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfooter.js
92 lines (81 loc) · 2.05 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
import Link from "next/link";
export default function Footer() {
return (
<div className="footer">
<style jsx>
{`
.footer {
font-size: 14px;
font-weight: 400;
margin-top: 20px;
margin-bottom: 40px;
text-align: center;
}
.footer-logo {
margin: 24px 0 50px;
}
.copyright {
display: block;
padding-bottom: 26px;
}
.footer a {
color: #373a3a;
}
.note {
font-size: 0.8rem;
line-height: 1.2rem;
color: #999;
}
@media only screen and (max-width: 767px) {
.footer {
margin-bottom: 50px;
}
.footer a {
margin-left: 15px;
}
.footer-logo {
margin-bottom: 30px;
}
}
@media only screen and (min-width: 768px) {
.footer {
margin: 1rem 0;
}
.footer a {
display: inline;
margin-right: 0;
margin-left: 20px;
}
}
`}
</style>
<span className="copyright">© OctoLinker 2019-Present</span>
<Link href="/privacy">
<a>Privacy</a>
</Link>
<Link href="/media">
<a>Media</a>
</Link>
<a href="https://twitter.com/octolinker">Twitter</a>
<a href="https://github.com/octolinker/octolinker">GitHub</a>
<div className="footer-logo">
<a
href="https://www.art-noir.net"
title="Full Stack Creative Marketing // Art Noir"
target="_blank"
>
<img
src="/static/art-noir-logo.png"
alt="https://www.art-noir.net"
width="90"
/>
</a>
</div>
<div className="note">
OctoLinker is not affiliated with, sponsored by,
<br />
or endorsed by GitHub Inc.
</div>
</div>
);
}