{"id":26505578,"url":"https://github.com/siddami/movie-site","last_synced_at":"2026-04-17T17:31:41.057Z","repository":{"id":249882648,"uuid":"832842696","full_name":"Siddami/movie-site","owner":"Siddami","description":"a simple movie site react project","archived":false,"fork":false,"pushed_at":"2024-07-23T20:57:55.000Z","size":1752,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-20T21:59:28.323Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Siddami.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-23T20:40:29.000Z","updated_at":"2024-07-23T20:57:58.000Z","dependencies_parsed_at":"2024-07-24T00:23:09.595Z","dependency_job_id":null,"html_url":"https://github.com/Siddami/movie-site","commit_stats":null,"previous_names":["siddami/movie-site"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Siddami/movie-site","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Siddami%2Fmovie-site","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Siddami%2Fmovie-site/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Siddami%2Fmovie-site/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Siddami%2Fmovie-site/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Siddami","download_url":"https://codeload.github.com/Siddami/movie-site/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Siddami%2Fmovie-site/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31938633,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T17:29:20.459Z","status":"ssl_error","status_checked_at":"2026-04-17T17:28:47.801Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-20T21:47:43.949Z","updated_at":"2026-04-17T17:31:41.038Z","avatar_url":"https://github.com/Siddami.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MovieSite\n\nMovieSite is a web application that allows users to browse and explore popular and top-rated movies. The application fetches data from the [TMDb API](https://www.themoviedb.org/documentation/api) to display the latest movies, their details, and ratings.\n\n## Table of Contents\n\n- [MovieSite](#moviesite)\n  - [Table of Contents](#table-of-contents)\n  - [Features](#features)\n  - [Installation](#installation)\n  - [Usage](#usage)\n  - [Components](#components)\n    - [`Card`](#card)\n    - [`Footer`](#footer)\n    - [`Hero`](#hero)\n    - [`Home`](#home)\n    - [`Loader`](#loader)\n    - [`MovieDetails`](#moviedetails)\n    - [`App`](#app)\n    - [`main`](#main)\n  - [API](#api)\n  - [License](#license)\n\n## Features\n\n- Display featured movies with posters and ratings\n- View detailed information about each movie\n- Search for movies\n- Responsive design for various screen sizes\n\n## Installation\n\n1. Clone the repository:\n\n    ```sh\n    git clone https://github.com/Siddami/movie-app.git\n    cd movie-app\n    ```\n\n2. Install the dependencies:\n\n    ```sh\n    npm install\n    ```\n\n3. Create a `.env` file in the root directory and add your TMDb API key:\n\n    ```sh\n    REACT_APP_API_KEY=your_api_key_here\n    ```\n\n4. Start the development server:\n\n    ```sh\n    npm start\n    ```\n\n## Usage\n\nOpen your browser and navigate to `http://localhost:3000` to see the application in action. Use the search bar to look for specific movies or click on a movie card to view detailed information.\n\n## Components\n\n### `Card`\n\nDisplays a grid of movie cards with the movie poster, title, release date, and ratings.\n\n### `Footer`\n\nContains links to social media profiles, terms of use, privacy policy, and other footer information.\n\n### `Hero`\n\nShows the hero section with a featured movie, including its poster, title, ratings, and a brief description.\n\n### `Home`\n\nThe main page that includes the `Hero`, `Card`, and `Footer` components. It fetches the top-rated movies from the TMDb API.\n\n### `Loader`\n\nA loading spinner component displayed while data is being fetched.\n\n### `MovieDetails`\n\nDisplays detailed information about a selected movie, including its overview, genre, runtime, ratings, and popularity.\n\n### `App`\n\nDefines the routes for the application. It includes routes for the home page and movie details page.\n\n### `main`\n\nEntry point of the React application. It renders the `App` component wrapped in a `BrowserRouter`.\n\n## API\n\nThis application uses the TMDb API to fetch movie data. Ensure you have a valid API key from [TMDb](https://www.themoviedb.org/documentation/api).\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for more details.\n\n---\n\nDeveloped by Abdulkareem Yetunde Siddiqat.\n\nFeel free to contribute to this project by opening issues or submitting pull requests.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiddami%2Fmovie-site","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsiddami%2Fmovie-site","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiddami%2Fmovie-site/lists"}