├── .github └── FUNDING.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── package.json ├── public ├── _redirects ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── react-movie-app-using-typescript ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── API │ │ └── API.ts │ ├── App.css │ ├── App.test.tsx │ ├── App.tsx │ ├── components │ │ ├── Actor │ │ │ ├── Actor.styles.ts │ │ │ └── index.tsx │ │ ├── BreadCrump │ │ │ ├── BreadCrump.styles.ts │ │ │ └── index.tsx │ │ ├── Button │ │ │ ├── Button.styles.ts │ │ │ └── index.tsx │ │ ├── Grid │ │ │ ├── Grid.styles.ts │ │ │ └── index.tsx │ │ ├── Header │ │ │ ├── Header.styles.ts │ │ │ └── index.tsx │ │ ├── HeroImage │ │ │ ├── HeroImage.styles.ts │ │ │ └── index.tsx │ │ ├── Home.tsx │ │ ├── Movie.tsx │ │ ├── MovieInfo │ │ │ ├── MovieInfo.styles.ts │ │ │ └── index.tsx │ │ ├── MovieInfoBar │ │ │ ├── MovieInfoBar.styles.ts │ │ │ └── index.tsx │ │ ├── NotFound.tsx │ │ ├── SearchBar │ │ │ ├── SearchBar.styles.ts │ │ │ └── index.tsx │ │ ├── Spinner │ │ │ ├── Spinner.styles.ts │ │ │ └── index.tsx │ │ └── Thumbnail │ │ │ ├── Thumbnail.styles.ts │ │ │ └── index.tsx │ ├── config │ │ └── config.ts │ ├── helpers │ │ └── helpers.ts │ ├── hooks │ │ ├── useHomeFetch.ts │ │ └── useMovieFetch.ts │ ├── images │ │ ├── no_image.jpg │ │ ├── react-movie-logo.svg │ │ ├── search-icon.svg │ │ └── tmdb_logo.svg │ ├── index.css │ ├── index.tsx │ ├── logo.svg │ ├── react-app-env.d.ts │ ├── reportWebVitals.ts │ ├── setupTests.ts │ └── styles │ │ └── global │ │ └── GlobalStyle.ts └── tsconfig.json ├── src ├── API │ └── API.js ├── App.css ├── App.js ├── App.test.js ├── components │ ├── Actor │ │ ├── Actor.styles.js │ │ └── index.js │ ├── BreadCrump │ │ ├── BreadCrump.styles.js │ │ └── index.js │ ├── Button │ │ ├── Button.styles.js │ │ └── index.js │ ├── Grid │ │ ├── Grid.styles.js │ │ └── index.js │ ├── Header │ │ ├── Header.styles.js │ │ └── index.js │ ├── HeroImage │ │ ├── HeroImage.styles.js │ │ └── index.js │ ├── Home.js │ ├── Login │ │ ├── login.js │ │ └── login.styles.js │ ├── Movie.js │ ├── MovieInfo │ │ ├── MovieInfo.styles.js │ │ └── index.js │ ├── MovieInfoBar │ │ ├── MovieInfoBar.styles.js │ │ └── index.js │ ├── NotFound.js │ ├── SearchBar │ │ ├── SearchBar.styles.js │ │ └── index.js │ ├── Spinner │ │ ├── Spinner.styles.js │ │ └── index.js │ └── Thumbnail │ │ ├── Thumbnail.styles.js │ │ └── index.js ├── config │ └── config.js ├── context │ └── context.js ├── helpers │ └── helpers.js ├── hooks │ ├── useHomeFetch.js │ └── useMovieFetch.js ├── images │ ├── no_image.jpg │ ├── react-movie-logo.svg │ ├── search-icon.svg │ └── tmdb_logo.svg ├── index.css ├── index.js ├── reportWebVitals.js ├── setupTests.js └── styles │ └── global │ └── GlobalStyle.js └── yarn.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/package.json -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/public/robots.txt -------------------------------------------------------------------------------- /react-movie-app-using-typescript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/.gitignore -------------------------------------------------------------------------------- /react-movie-app-using-typescript/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /react-movie-app-using-typescript/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/CONTRIBUTING.md -------------------------------------------------------------------------------- /react-movie-app-using-typescript/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/LICENSE -------------------------------------------------------------------------------- /react-movie-app-using-typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/README.md -------------------------------------------------------------------------------- /react-movie-app-using-typescript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/package-lock.json -------------------------------------------------------------------------------- /react-movie-app-using-typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/package.json -------------------------------------------------------------------------------- /react-movie-app-using-typescript/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/public/favicon.ico -------------------------------------------------------------------------------- /react-movie-app-using-typescript/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/public/index.html -------------------------------------------------------------------------------- /react-movie-app-using-typescript/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/public/logo192.png -------------------------------------------------------------------------------- /react-movie-app-using-typescript/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/public/logo512.png -------------------------------------------------------------------------------- /react-movie-app-using-typescript/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/public/manifest.json -------------------------------------------------------------------------------- /react-movie-app-using-typescript/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/public/robots.txt -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/API/API.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/API/API.ts -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/App.css -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/App.test.tsx -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/App.tsx -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/components/Actor/Actor.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/components/Actor/Actor.styles.ts -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/components/Actor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/components/Actor/index.tsx -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/components/BreadCrump/BreadCrump.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/components/BreadCrump/BreadCrump.styles.ts -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/components/BreadCrump/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/components/BreadCrump/index.tsx -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/components/Button/Button.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/components/Button/Button.styles.ts -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/components/Button/index.tsx -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/components/Grid/Grid.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/components/Grid/Grid.styles.ts -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/components/Grid/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/components/Grid/index.tsx -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/components/Header/Header.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/components/Header/Header.styles.ts -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/components/Header/index.tsx -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/components/HeroImage/HeroImage.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/components/HeroImage/HeroImage.styles.ts -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/components/HeroImage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/components/HeroImage/index.tsx -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/components/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/components/Home.tsx -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/components/Movie.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/components/Movie.tsx -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/components/MovieInfo/MovieInfo.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/components/MovieInfo/MovieInfo.styles.ts -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/components/MovieInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/components/MovieInfo/index.tsx -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/components/MovieInfoBar/MovieInfoBar.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/components/MovieInfoBar/MovieInfoBar.styles.ts -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/components/MovieInfoBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/components/MovieInfoBar/index.tsx -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/components/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/components/NotFound.tsx -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/components/SearchBar/SearchBar.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/components/SearchBar/SearchBar.styles.ts -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/components/SearchBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/components/SearchBar/index.tsx -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/components/Spinner/Spinner.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/components/Spinner/Spinner.styles.ts -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/components/Spinner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/components/Spinner/index.tsx -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/components/Thumbnail/Thumbnail.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/components/Thumbnail/Thumbnail.styles.ts -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/components/Thumbnail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/components/Thumbnail/index.tsx -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/config/config.ts -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/helpers/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/helpers/helpers.ts -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/hooks/useHomeFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/hooks/useHomeFetch.ts -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/hooks/useMovieFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/hooks/useMovieFetch.ts -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/images/no_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/images/no_image.jpg -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/images/react-movie-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/images/react-movie-logo.svg -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/images/search-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/images/search-icon.svg -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/images/tmdb_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/images/tmdb_logo.svg -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/index.css -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/index.tsx -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/logo.svg -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/reportWebVitals.ts -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/setupTests.ts -------------------------------------------------------------------------------- /react-movie-app-using-typescript/src/styles/global/GlobalStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/src/styles/global/GlobalStyle.ts -------------------------------------------------------------------------------- /react-movie-app-using-typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/react-movie-app-using-typescript/tsconfig.json -------------------------------------------------------------------------------- /src/API/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/API/API.js -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/Actor/Actor.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/components/Actor/Actor.styles.js -------------------------------------------------------------------------------- /src/components/Actor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/components/Actor/index.js -------------------------------------------------------------------------------- /src/components/BreadCrump/BreadCrump.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/components/BreadCrump/BreadCrump.styles.js -------------------------------------------------------------------------------- /src/components/BreadCrump/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/components/BreadCrump/index.js -------------------------------------------------------------------------------- /src/components/Button/Button.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/components/Button/Button.styles.js -------------------------------------------------------------------------------- /src/components/Button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/components/Button/index.js -------------------------------------------------------------------------------- /src/components/Grid/Grid.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/components/Grid/Grid.styles.js -------------------------------------------------------------------------------- /src/components/Grid/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/components/Grid/index.js -------------------------------------------------------------------------------- /src/components/Header/Header.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/components/Header/Header.styles.js -------------------------------------------------------------------------------- /src/components/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/components/Header/index.js -------------------------------------------------------------------------------- /src/components/HeroImage/HeroImage.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/components/HeroImage/HeroImage.styles.js -------------------------------------------------------------------------------- /src/components/HeroImage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/components/HeroImage/index.js -------------------------------------------------------------------------------- /src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/components/Home.js -------------------------------------------------------------------------------- /src/components/Login/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/components/Login/login.js -------------------------------------------------------------------------------- /src/components/Login/login.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/components/Login/login.styles.js -------------------------------------------------------------------------------- /src/components/Movie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/components/Movie.js -------------------------------------------------------------------------------- /src/components/MovieInfo/MovieInfo.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/components/MovieInfo/MovieInfo.styles.js -------------------------------------------------------------------------------- /src/components/MovieInfo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/components/MovieInfo/index.js -------------------------------------------------------------------------------- /src/components/MovieInfoBar/MovieInfoBar.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/components/MovieInfoBar/MovieInfoBar.styles.js -------------------------------------------------------------------------------- /src/components/MovieInfoBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/components/MovieInfoBar/index.js -------------------------------------------------------------------------------- /src/components/NotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/components/NotFound.js -------------------------------------------------------------------------------- /src/components/SearchBar/SearchBar.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/components/SearchBar/SearchBar.styles.js -------------------------------------------------------------------------------- /src/components/SearchBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/components/SearchBar/index.js -------------------------------------------------------------------------------- /src/components/Spinner/Spinner.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/components/Spinner/Spinner.styles.js -------------------------------------------------------------------------------- /src/components/Spinner/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/components/Spinner/index.js -------------------------------------------------------------------------------- /src/components/Thumbnail/Thumbnail.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/components/Thumbnail/Thumbnail.styles.js -------------------------------------------------------------------------------- /src/components/Thumbnail/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/components/Thumbnail/index.js -------------------------------------------------------------------------------- /src/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/config/config.js -------------------------------------------------------------------------------- /src/context/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/context/context.js -------------------------------------------------------------------------------- /src/helpers/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/helpers/helpers.js -------------------------------------------------------------------------------- /src/hooks/useHomeFetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/hooks/useHomeFetch.js -------------------------------------------------------------------------------- /src/hooks/useMovieFetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/hooks/useMovieFetch.js -------------------------------------------------------------------------------- /src/images/no_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/images/no_image.jpg -------------------------------------------------------------------------------- /src/images/react-movie-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/images/react-movie-logo.svg -------------------------------------------------------------------------------- /src/images/search-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/images/search-icon.svg -------------------------------------------------------------------------------- /src/images/tmdb_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/images/tmdb_logo.svg -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/styles/global/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/src/styles/global/GlobalStyle.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsoni1010/moviemania/HEAD/yarn.lock --------------------------------------------------------------------------------