-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
/
Copy pathFooter.jsx
43 lines (40 loc) · 1.62 KB
/
Footer.jsx
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
import React from 'react';
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';
export default (props) => {
return (
<footer className="footer">
<Container className="footer__inner">
<section className="footer__left">
<Link className="footer__link" to="/guides/getting-started">Getting Started</Link>
<Link className="footer__link" to="/organization">Organization</Link>
<Link className="footer__link" to="/support">Support</Link>
<Link className="footer__link" to="/comparison">Comparison</Link>
</section>
<section className="footer__middle">
<Link to="/" className="footer__icon">
<img src={ Icon } alt="webpack icon"/>
</Link>
</section>
<section className="footer__right">
<Link className="footer__link" to="/glossary">Glossary</Link>
<Link className="footer__link" to="/branding">Branding</Link>
<Link className="footer__link" to="//gitter.im/webpack/webpack">Gitter</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 } />
<img
alt="Creative Commons License"
src={ BY } />
</Link>
</section>
</Container>
</footer>
);
};