@@ -5,31 +5,31 @@ import Container from '../container/container';
55import Icon from '../../assets/icon-square-small.svg' ;
66import './footer-style' ;
77
8- export default ( props ) => {
9- return (
10- < footer className = "footer" >
11- < Container className = "footer__inner" >
12- < section className = "footer__left" >
13- < Link className = "footer__link" to = "/guides/get-started" > Get Started</ Link >
14- < Link className = "footer__link" to = "/organization" > Organization</ Link >
15- < Link className = "footer__link" to = "/support" > Support</ Link >
16- < Link className = "footer__link" to = "/guides/why-webpack#comparison" > Comparison</ Link >
17- </ section >
8+ const Footer = ( ) => (
9+ < footer className = "footer" >
10+ < Container className = "footer__inner" >
11+ < section className = "footer__left" >
12+ < Link className = "footer__link" to = "/guides/get-started/" > Get Started</ Link >
13+ < Link className = "footer__link" to = "/organization/" > Organization</ Link >
14+ < Link className = "footer__link" to = "/support/" > Support</ Link >
15+ < Link className = "footer__link" to = "/guides/why-webpack/#comparison" > Comparison</ Link >
16+ </ section >
1817
19- < section className = "footer__middle" >
20- < Link to = "/" className = "footer__icon" >
21- < img src = { Icon } />
22- </ Link >
23- </ section >
18+ < section className = "footer__middle" >
19+ < Link to = "/" className = "footer__icon" >
20+ < img src = { Icon } />
21+ </ Link >
22+ </ section >
2423
25- < section className = "footer__right" >
26- < Link className = "footer__link" to = "/branding" > Branding</ Link >
27- < Link className = "footer__link" to = "//gitter.im/webpack/webpack" > Gitter</ Link >
28- < Link className = "footer__link" to = "https://github.com/webpack/webpack/releases" > Changelog</ Link >
29- < Link className = "footer__link" to = "/license" > License</ Link >
30- < CC />
31- </ section >
32- </ Container >
33- </ footer >
34- ) ;
35- } ;
24+ < section className = "footer__right" >
25+ < Link className = "footer__link" to = "/branding/" > Branding</ Link >
26+ < Link className = "footer__link" to = "//gitter.im/webpack/webpack" > Gitter</ Link >
27+ < Link className = "footer__link" to = "https://github.com/webpack/webpack/releases" > Changelog</ Link >
28+ < Link className = "footer__link" to = "/license/" > License</ Link >
29+ < CC />
30+ </ section >
31+ </ Container >
32+ </ footer >
33+ ) ;
34+
35+ export default Footer ;
0 commit comments