|
1 | 1 | import React from 'react'; |
2 | | -import Footer from './Footer'; |
3 | 2 | import { withRouter } from 'react-router-dom'; |
4 | 3 |
|
5 | | -import CoderockrLogo from './assets/images/hand-yellow.svg' |
6 | 4 | import githubLogo from './assets/images/github.svg' |
7 | 5 | import gitlabLogo from './assets/images/gitlab.svg' |
8 | 6 | import trelloLogo from './assets/images/trello.svg' |
@@ -32,38 +30,32 @@ const SETUPABLE = [ |
32 | 30 |
|
33 | 31 | const Home = () => ( |
34 | 32 | <div className="Home"> |
35 | | - <header> |
36 | | - <CoderockrLogo className="logo" /> |
37 | | - <h1 className="text">CODEROCKR WAY PROJECT SETUP</h1> |
38 | | - </header> |
39 | | - <div className="container"> |
40 | | - <section className="description"> |
41 | | - <p> |
42 | | - This web client helps to setup a project at GitHub, GitLab or Trello to use the |
43 | | - Coderockr Way's labels, making easier to bootstrap the basic configuration at |
44 | | - your project. |
45 | | - </p> |
46 | | - </section> |
47 | | - <section className="project-handlers"> |
48 | | - <h2>Where is your project?</h2> |
49 | | - <ul className="row project-handlers-buttons justify-content-md-center"> |
50 | | - {SETUPABLE.map(({ name, logo: Logo, url, enabled }) => ( |
51 | | - <li key={name} className="col-md-4"> |
52 | | - <a className={`btn btn-primary ${enabled ? null : 'disabled'}`} href={url} |
53 | | - alt={enabled ? '' : `${name} will be supported soon`}> |
54 | | - <Logo className="icon" /> |
55 | | - {name} |
56 | | - </a> |
57 | | - </li> |
58 | | - ))} |
59 | | - </ul> |
60 | | - </section> |
61 | | - <section className="more-about"> |
62 | | - <h4>Wanna know more about?</h4> |
63 | | - <p>Look this link: <a href="https://blog.coderockr.com/simplificando-o-setup-de-projetos-no-github-f29b76c83194">Simplificando o Setup de Projetos no GitHub</a> |
64 | | - </p> |
65 | | - </section> |
66 | | - </div> |
| 33 | + <section className="description"> |
| 34 | + <p> |
| 35 | + This web client helps to setup a project at GitHub, GitLab or Trello to use the |
| 36 | + Coderockr Way's labels, making easier to bootstrap the basic configuration at |
| 37 | + your project. |
| 38 | + </p> |
| 39 | + </section> |
| 40 | + <section className="project-handlers"> |
| 41 | + <h2>Where is your project?</h2> |
| 42 | + <ul className="row project-handlers-buttons justify-content-md-center"> |
| 43 | + {SETUPABLE.map(({ name, logo: Logo, url, enabled }) => ( |
| 44 | + <li key={name} className="col-md-4"> |
| 45 | + <a className={`btn btn-primary ${enabled ? null : 'disabled'}`} href={url} |
| 46 | + alt={enabled ? '' : `${name} will be supported soon`}> |
| 47 | + <Logo className="icon" /> |
| 48 | + {name} |
| 49 | + </a> |
| 50 | + </li> |
| 51 | + ))} |
| 52 | + </ul> |
| 53 | + </section> |
| 54 | + <section className="more-about"> |
| 55 | + <h4>Wanna know more about?</h4> |
| 56 | + <p>Look this link: <a href="https://blog.coderockr.com/simplificando-o-setup-de-projetos-no-github-f29b76c83194">Simplificando o Setup de Projetos no GitHub</a> |
| 57 | + </p> |
| 58 | + </section> |
67 | 59 | </div> |
68 | 60 | ) |
69 | 61 |
|
|
0 commit comments