This is a simple full-stack project using Next.Js to create a pokedex using the PokeAPI. The project contains the main page, that render pokemons on demand and allowing the user to load more pokemons by clicking the "Load more" button. The details page, contains the main pokemon information as: Height, Weight, Types, Stats and Abilities.
First you need to install all the required packages:
yarn installAs a Next.Js project you can run it on dev mode:
yarn devOr you can build and run the project:
yarn build
# then
yarn start