forked from webpack/webpack.js.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFooter.jsx
More file actions
64 lines (59 loc) · 2.01 KB
/
Footer.jsx
File metadata and controls
64 lines (59 loc) · 2.01 KB
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
import Link from '../Link/Link';
import Container from '../Container/Container';
import Icon from '../../assets/icon-square-small.svg';
import CC from '../../assets/cc.svg';
import BY from '../../assets/by.svg';
import './Footer.scss';
const Footer = () => (
<footer className="footer">
<Container className="footer__inner">
<section className="footer__left">
<Link className="footer__link" to="/guides/getting-started/">
Get Started
</Link>
<Link className="footer__link" to="/comparison/">
Comparison
</Link>
<Link className="footer__link" to="https://privacy-policy.openjsf.org/">
Privacy Policy
</Link>
</section>
<section className="footer__middle">
<Link to="/" className="footer__icon">
<img src={Icon} alt="webpack icon" width={35} height={35} />
</Link>
</section>
<section className="footer__right">
<Link className="footer__link" to="https://webpack.threadless.com/">
Swag Store
</Link>
<Link className="footer__link" to="/awesome-webpack/">
Awesome webpack
</Link>
<Link className="footer__link" to="/glossary/">
Glossary
</Link>
<Link className="footer__link" to="/branding/">
Branding
</Link>
<Link className="footer__link" to="https://gitter.im/webpack/webpack">
Gitter
</Link>
<Link className="footer__link" to="https://discord.com/invite/8WWf6F7p">
Discord
</Link>
<Link
className="footer__link"
to="https://github.com/webpack/webpack/releases"
>
Changelog
</Link>
<Link className="footer__link footer__license" to="/license">
<img alt="Creative Commons License" src={CC} width={25} height={25} />
<img alt="Creative Commons License" src={BY} width={25} height={25} />
</Link>
</section>
</Container>
</footer>
);
export default Footer;