Skip to content

Commit

Permalink
pokedex
Browse files Browse the repository at this point in the history
  • Loading branch information
felizardo27 committed Aug 13, 2022
0 parents commit 092f170
Show file tree
Hide file tree
Showing 23 changed files with 5,141 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<h1 align="center">
Projeto Pokedex
</h1>

<p align="center">
<img src="https://user-images.githubusercontent.com/72112006/184494149-f9fbe8a9-4448-457c-9069-66f831626c87.gif" width="800" height="550">
</p>

## Descrição:
Projeto Pokedex desenvolvido em React, usando a api [PokeApi](https://pokeapi.co/), onde traz o id, nome e gif do pokemon
</br>
Possui dois botões para fazer a troca dos pokemons, e uma pesquisa por nome ou por id

## Tecnologias usadas
<div align="center"><br>
<img align="center" alt="HTML" height="50" width="60" src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/html5/html5-plain-wordmark.svg">
<img align="center" alt="SASS" height="50" width="60" src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/sass/sass-original.svg">
<img align="center" alt="TYPESCRIPT" height="50" width="60" src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/typescript/typescript-plain.svg">
<img align="center" alt="REACT" height="50" width="60" src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/react/react-original-wordmark.svg">
</div>
13 changes: 13 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pokedex</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading

0 comments on commit 092f170

Please sign in to comment.