|
1 | | -import React from 'react' |
| 1 | +import React from 'react'; |
| 2 | +import { Link } from "gatsby"; |
| 3 | +import styles from './footer.module.css'; |
| 4 | +import escudo from "../../images/logo-escudo-ec.svg"; |
| 5 | +//import SocialNetworks from './social-networks'; |
2 | 6 |
|
3 | 7 | const Footer = () => ( |
4 | | - <footer className="bg-yellow-500"> |
5 | | - <nav className="flex justify-between max-w-4xl p-4 mx-auto text-sm md:p-8"> |
6 | | - <p className="text-white font-bold">JavaScript Ecuador</p> |
| 8 | + <footer className={styles.footer}> |
| 9 | + <div className={styles.flex}> |
| 10 | + <div className={styles.col}> |
| 11 | + <h4 className={styles.footer__title}>RECURSOS</h4> |
| 12 | + <ul> |
| 13 | + <li>Acerca de</li> |
| 14 | + <Link to="/blog" ><li>Blog</li> </Link> |
| 15 | + <Link to="/cuentas"><li>Cuentas</li></Link> |
| 16 | + </ul> |
| 17 | + </div> |
| 18 | + <div className={styles.col}> |
| 19 | + <h4 className={styles.footer__title}>AYUDA</h4> |
| 20 | + <ul> |
| 21 | + <li>Organizar un Meetup</li> |
| 22 | + <li>Dar una Charla/Taller</li> |
| 23 | + <li>Publicar un Post</li> |
| 24 | + <li>Informar un problema</li> |
| 25 | + <Link to="/code-of-conduct"><li>Código de Conducta</li></Link> |
| 26 | + </ul> |
| 27 | + </div> |
| 28 | + |
| 29 | + <div className={styles.col}> |
| 30 | + <h4 className={styles.footer__title}>COMUNIDAD</h4> |
| 31 | + <ul> |
| 32 | + <Link to="/eventos"><li>Eventos</li></Link> |
| 33 | + <li>¿Cómo ayudar?</li> |
| 34 | + <li>Quiero ser Patrocinador</li> |
| 35 | + <li>Registrar mi ciudad</li> |
| 36 | + <li>Descargo de responsabilidad</li> |
| 37 | + </ul> |
| 38 | + </div> |
| 39 | + |
| 40 | + <div className={styles.col}> |
| 41 | + <h1 >Ecuador.js</h1> |
| 42 | + <img src={escudo} alt="Escudo del Ecuador" /> |
| 43 | + {/* <SocialNetworks /> */} |
| 44 | + </div> |
| 45 | + </div> |
| 46 | + |
| 47 | + <p>¿Encontraste un error? <span><a href="https://github.com/javascriptecuador/web/issues/new/choose" target="_blank">Repórtalo </a></span></p> |
| 48 | + |
| 49 | + <h2>2019 - 2020 Ecuador.js</h2> |
| 50 | + <h3>All rights reserved</h3> |
7 | 51 |
|
8 | | - <p> |
9 | | - <a |
10 | | - className="font-bold text-white no-underline" |
11 | | - href="https://github.com/javascriptecuador/web" |
12 | | - target="_blank" |
13 | | - rel="noopener noreferrer"> |
14 | | - GitHub |
15 | | - </a> |
16 | | - </p> |
17 | | - </nav> |
18 | 52 | </footer> |
19 | 53 | ); |
20 | 54 |
|
|
0 commit comments