MovieExplorer is a web application built with Vue.js, TypeScript, and Tailwind CSS that allows users to search for movies and view detailed information about them. It integrates with a movie API to fetch movie data and display it in an easy-to-use interface.
- Search for Movies: Users can search for movies by title.
- Movie List: Display a list of movies with a poster, title, and release year.
- Movie Details: View detailed information about a selected movie, including plot, genre, cast, and IMDb rating.
- Responsive Design: Fully responsive, optimized for both desktop and mobile devices.
- Vue.js: JavaScript framework for building the user interface.
- TypeScript: Type-safe JavaScript that improves code quality and maintainability.
- Tailwind CSS: Utility-first CSS framework for building custom designs.
- Movie API: API to fetch movie details and information.
To run this project locally, follow the instructions below:
git clone https://github.com/iNoles/MovieExplorer.git
cd MovieExplorer
Make sure you have bun installed. Then, run:
bun install
To start the development server and see the application in action:
bun run dev
Visit http://localhost:3000
in your browser.
Contributions are welcome! Here's how you can help:
- Fork the repository.
- Create your feature branch (
git checkout -b feature/YourFeature
). - Commit your changes (
git commit -m 'Add YourFeature'
). - Push to the branch (
git push origin feature/YourFeature
). - Open a pull request.