A modern movie discovery website built with React, Vite, and Tailwind CSS.




- Browse trending, popular, top-rated, and upcoming movies
- Search movies with real-time results
- Add movies to watchlist (persists in localStorage)
- Detailed movie information with cast and crew
- Responsive design for all devices.
- Clone the repository
- Install dependencies:
npm install
- Get a free API key from TMDB
- Create
.env
file and add your API key:VITE_TMDB_API_KEY=your_api_key_here VITE_TMDB_READ_ACCESS_TOKEN="your_read_access_token" # URLs (these remain the same) VITE_TMDB_BASE_URL="https://api.themoviedb.org/3" VITE_TMDB_IMAGE_BASE_URL="https://image.tmdb.org/t/p"