This is a React Next.js application that leverages the PokéAPI to display all the different Pokémon in the Pokédex. The app allows users to browse through Pokémon and view their details.
- Display a list of Pokémon from the Pokédex
- View detailed information about each Pokémon, including stats, types, and abilities
Check out the live demo of the app here.
To get a local copy up and running, follow these simple steps.
Make sure you have the following installed:
-
Clone the repository
git clone https://github.com/your-username/pokemon-pokedex-app.git
-
Navigate to the project directory
cd pokedex-app
-
Install dependencies
npm install
To start the development server, run:
```sh
npm run dev
```
The app uses the PokéAPI to fetch Pokémon data. The API requests are handled using Next.js's API routes.
- PokemonList: Displays a list of Pokémon.
- PokemonCard: Displays individual Pokémon details.
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (git checkout -b feature/AmazingFeature)
- Commit your Changes (git commit -m 'Add some AmazingFeature')
- Push to the Branch (git push origin feature/AmazingFeature)
- Open a Pull Request
- PokéAPI for providing the Pokémon data.
- Next.js for the amazing framework.
- React for the UI library.