/search-engine-movies-technical-test

is an implementation of a movie search engine developed as part of a technical test. The main goal of the project is to build a system that allows users to search for movies based on certain criteria and display relevant results.

Primary LanguageCSS

Statement

🎬 Create an application to search for movies. ⚙️ API to use: - https://www.omdbapi.com/ 📢 Get the API Key on the website by registering your email.

Requirements:

  • Display an input field to search for the movie and a button to search.
  • List the movies and display the title, year, and poster.
  • Ensure that the form is functional.
  • Implement a responsive grid to display the movies.
  • Fetch data from the API.

First iteration:

  • Prevent duplicate consecutive searches.
  • Implement automatic search while typing.
  • Avoid continuous searching while typing (debounce).