Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Makson19 committed Jul 27, 2022
0 parents commit d78622c
Show file tree
Hide file tree
Showing 26 changed files with 29,580 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2022 Makson Douglas

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
80 changes: 80 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
# POKÉDEX

Este projeto se trata de uma pokédex onde são mostrados todos os Pokémons e alguns de seus dados, como o tipo, peso e altura. Todos esses dados são advindos da API [PokeAPI](https://pokeapi.co/).

## Tabela de Conteúdos

* [Visão Geral](#visao-geral)
* [O Projeto](#o-projeto)
* [Screenshot](#screenshot)
* [Links](#links)
* [Instalação](#instalação)
* [Tecnologias](#tecnologias)
* [Autor](#autor)
* [Licença](#licença)


## Visão Geral

### O Projeto

Neste projeto os usuários serão capazes de:

- Visualizar o layout ideal dependendo do tamanho de tela do dispositivo
- Ver os estados de foco para todos os elementos interativos na página
- Visualizar cada Pokémon ao clicá-lo na tela


### Screenshot

#### Desktop
<img src="./screenshots/screenshot-desktop.png" alt="screenshot desktop" />

#### Mobile
<img src="./screenshots/screenshot-mobile.png" alt="screenshot mobile" width="375" />


### Links

- Live Site URL: [Demo](https://pokedexv2.netlify.app/)


## Instalação

Antes de começar, você precisa ter instalado em sua máquina o [Node.js](https://nodejs.org/en/).

Após instalar o Node, clone o projeto e acesse a pasta onde ele está.

```git
git clone https://github.com/Makson19/pokedex-react.git
cd pokedex-react
```

Execute os comandos abaixo para instalar as dependecias do projeto e para executá-lo, respectivamente.

```js
npm install

npm start
```


## Tecnologias

- HTML5
- CSS
- [React](https://reactjs.org/)
- [Styled Components](https://styled-components.com/)


## Autor

- Frontend Mentor - [@Makson19](https://www.frontendmentor.io/profile/Makson19)
- Github - [Makson19](https://github.com/Makson19)
- Codepen - [@Makson19](https://codepen.io/Makson19)


## Licença

- [MIT](./LICENSE)
Loading

0 comments on commit d78622c

Please sign in to comment.