A fast and simple Pokémon search tool built with React + Vite, using the free PokéAPI.
Type any Pokémon’s name and instantly see its sprite in a smooth, minimal interface.
const response = await fetch(
https://pokeapi.co/api/v2/pokemon/${pokemonName.toLowerCase()}
);
const data = await response.json(); setPokemonImage(data.sprites.front_default);
- 🔍 Search Pokémon by name
- ⚡ Real-time data from PokéAPI
- 🎨 Clean, minimal UI
- 📱 Fully responsive
- ⚙️ Built with React + Vite
git clone <your-repo-url>
cd pokemon-search
npm install
npm run dev.png)