├── .github ├── ISSUE_TEMPLATE │ ├── Documentation.yml │ ├── bug.yml │ ├── config.yml │ ├── feature-request.yml │ └── styles.yml ├── dependabot.yml └── pull_request_template.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── package.json ├── postcss.config.js ├── public ├── fav.png ├── index.html └── sitemap.xml ├── server ├── .gitignore ├── index.js ├── package.json ├── routes │ └── movies.js └── vercel.json ├── src ├── App.jsx ├── assets │ ├── image │ │ ├── avatar.webp │ │ ├── bg.webp │ │ ├── bg1.webp │ │ ├── bg2.webp │ │ ├── hide.webp │ │ ├── logo2.webp │ │ ├── logoipsum-logo-15.svg │ │ ├── notfound.webp │ │ ├── show.webp │ │ ├── slide.webp │ │ └── star.webp │ └── style │ │ ├── BannerS.module.css │ │ └── Footer.css ├── common │ └── validation.js ├── components │ ├── AdminAbout.jsx │ ├── Banner │ │ ├── Banner.jsx │ │ ├── CommonBanner.jsx │ │ ├── Details.jsx │ │ ├── Episode.jsx │ │ ├── MovieBanner.jsx │ │ └── TvBanner.jsx │ ├── Cards │ │ ├── Card.jsx │ │ ├── GenreCard.jsx │ │ └── MovieCard.jsx │ ├── Carousel │ │ ├── General.jsx │ │ ├── Genre.jsx │ │ ├── Similiar.jsx │ │ └── Trending.jsx │ ├── Contributor.jsx │ ├── Favourite.jsx │ ├── Favourites.jsx │ ├── Footer.jsx │ ├── Login.jsx │ ├── Movies.jsx │ ├── Navbar │ │ ├── Links.js │ │ ├── NavLink.jsx │ │ └── Navbar.jsx │ ├── OAuth.jsx │ ├── Pagination.jsx │ ├── Profile.jsx │ ├── ProtectedRoute.js │ ├── Reset.jsx │ ├── SavedCards.jsx │ ├── SavedShows.jsx │ ├── ScrollToTop.jsx │ ├── Search.jsx │ ├── Signup.jsx │ ├── TvShows.jsx │ ├── Ui │ │ ├── Avatar.jsx │ │ ├── Button.jsx │ │ └── SecButton.jsx │ ├── circleRating │ │ ├── CircleRating.jsx │ │ └── style.css │ └── styles.css ├── context │ └── authContext.js ├── firebase │ └── firebaseConfig.js ├── helper │ └── fetchData.js ├── index.css ├── index.js ├── pages │ ├── About.jsx │ ├── Categories.jsx │ ├── Episode.jsx │ ├── Home.jsx │ ├── Movie.jsx │ ├── NotFound404.jsx │ └── Tv.jsx └── style.js └── tailwind.config.js /.github/ISSUE_TEMPLATE/Documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/.github/ISSUE_TEMPLATE/Documentation.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/styles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/.github/ISSUE_TEMPLATE/styles.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/public/fav.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/public/index.html -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/server/index.js -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/server/package.json -------------------------------------------------------------------------------- /server/routes/movies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/server/routes/movies.js -------------------------------------------------------------------------------- /server/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/server/vercel.json -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/assets/image/avatar.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/assets/image/avatar.webp -------------------------------------------------------------------------------- /src/assets/image/bg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/assets/image/bg.webp -------------------------------------------------------------------------------- /src/assets/image/bg1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/assets/image/bg1.webp -------------------------------------------------------------------------------- /src/assets/image/bg2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/assets/image/bg2.webp -------------------------------------------------------------------------------- /src/assets/image/hide.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/assets/image/hide.webp -------------------------------------------------------------------------------- /src/assets/image/logo2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/assets/image/logo2.webp -------------------------------------------------------------------------------- /src/assets/image/logoipsum-logo-15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/assets/image/logoipsum-logo-15.svg -------------------------------------------------------------------------------- /src/assets/image/notfound.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/assets/image/notfound.webp -------------------------------------------------------------------------------- /src/assets/image/show.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/assets/image/show.webp -------------------------------------------------------------------------------- /src/assets/image/slide.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/assets/image/slide.webp -------------------------------------------------------------------------------- /src/assets/image/star.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/assets/image/star.webp -------------------------------------------------------------------------------- /src/assets/style/BannerS.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/assets/style/BannerS.module.css -------------------------------------------------------------------------------- /src/assets/style/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/assets/style/Footer.css -------------------------------------------------------------------------------- /src/common/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/common/validation.js -------------------------------------------------------------------------------- /src/components/AdminAbout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/AdminAbout.jsx -------------------------------------------------------------------------------- /src/components/Banner/Banner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Banner/Banner.jsx -------------------------------------------------------------------------------- /src/components/Banner/CommonBanner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Banner/CommonBanner.jsx -------------------------------------------------------------------------------- /src/components/Banner/Details.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Banner/Details.jsx -------------------------------------------------------------------------------- /src/components/Banner/Episode.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Banner/Episode.jsx -------------------------------------------------------------------------------- /src/components/Banner/MovieBanner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Banner/MovieBanner.jsx -------------------------------------------------------------------------------- /src/components/Banner/TvBanner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Banner/TvBanner.jsx -------------------------------------------------------------------------------- /src/components/Cards/Card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Cards/Card.jsx -------------------------------------------------------------------------------- /src/components/Cards/GenreCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Cards/GenreCard.jsx -------------------------------------------------------------------------------- /src/components/Cards/MovieCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Cards/MovieCard.jsx -------------------------------------------------------------------------------- /src/components/Carousel/General.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Carousel/General.jsx -------------------------------------------------------------------------------- /src/components/Carousel/Genre.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Carousel/Genre.jsx -------------------------------------------------------------------------------- /src/components/Carousel/Similiar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Carousel/Similiar.jsx -------------------------------------------------------------------------------- /src/components/Carousel/Trending.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Carousel/Trending.jsx -------------------------------------------------------------------------------- /src/components/Contributor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Contributor.jsx -------------------------------------------------------------------------------- /src/components/Favourite.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Favourite.jsx -------------------------------------------------------------------------------- /src/components/Favourites.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Favourites.jsx -------------------------------------------------------------------------------- /src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Footer.jsx -------------------------------------------------------------------------------- /src/components/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Login.jsx -------------------------------------------------------------------------------- /src/components/Movies.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Movies.jsx -------------------------------------------------------------------------------- /src/components/Navbar/Links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Navbar/Links.js -------------------------------------------------------------------------------- /src/components/Navbar/NavLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Navbar/NavLink.jsx -------------------------------------------------------------------------------- /src/components/Navbar/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Navbar/Navbar.jsx -------------------------------------------------------------------------------- /src/components/OAuth.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/OAuth.jsx -------------------------------------------------------------------------------- /src/components/Pagination.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Pagination.jsx -------------------------------------------------------------------------------- /src/components/Profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Profile.jsx -------------------------------------------------------------------------------- /src/components/ProtectedRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/ProtectedRoute.js -------------------------------------------------------------------------------- /src/components/Reset.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Reset.jsx -------------------------------------------------------------------------------- /src/components/SavedCards.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/SavedCards.jsx -------------------------------------------------------------------------------- /src/components/SavedShows.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/SavedShows.jsx -------------------------------------------------------------------------------- /src/components/ScrollToTop.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/ScrollToTop.jsx -------------------------------------------------------------------------------- /src/components/Search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Search.jsx -------------------------------------------------------------------------------- /src/components/Signup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Signup.jsx -------------------------------------------------------------------------------- /src/components/TvShows.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/TvShows.jsx -------------------------------------------------------------------------------- /src/components/Ui/Avatar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Ui/Avatar.jsx -------------------------------------------------------------------------------- /src/components/Ui/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Ui/Button.jsx -------------------------------------------------------------------------------- /src/components/Ui/SecButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/Ui/SecButton.jsx -------------------------------------------------------------------------------- /src/components/circleRating/CircleRating.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/circleRating/CircleRating.jsx -------------------------------------------------------------------------------- /src/components/circleRating/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/circleRating/style.css -------------------------------------------------------------------------------- /src/components/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/components/styles.css -------------------------------------------------------------------------------- /src/context/authContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/context/authContext.js -------------------------------------------------------------------------------- /src/firebase/firebaseConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/firebase/firebaseConfig.js -------------------------------------------------------------------------------- /src/helper/fetchData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/helper/fetchData.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/pages/About.jsx -------------------------------------------------------------------------------- /src/pages/Categories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/pages/Categories.jsx -------------------------------------------------------------------------------- /src/pages/Episode.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/pages/Episode.jsx -------------------------------------------------------------------------------- /src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/pages/Home.jsx -------------------------------------------------------------------------------- /src/pages/Movie.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/pages/Movie.jsx -------------------------------------------------------------------------------- /src/pages/NotFound404.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/pages/NotFound404.jsx -------------------------------------------------------------------------------- /src/pages/Tv.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/pages/Tv.jsx -------------------------------------------------------------------------------- /src/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/src/style.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourabhsikarwar/Scene-Movie-Platform/HEAD/tailwind.config.js --------------------------------------------------------------------------------