├── .env.development ├── .env.production ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── config-overrides.js ├── electron ├── electron-builder.json ├── icons │ └── 512x512.ico ├── index.ts └── preload.ts ├── package.json ├── public ├── favicon.ico └── index.html ├── src ├── App.tsx ├── MuiClassNameSetup.ts ├── assets │ ├── disconnected.png │ ├── error.png │ ├── logo-full-dark.svg │ ├── logo-full-light.svg │ └── no-image-poster.svg ├── components │ ├── DBottomBar │ │ ├── index.tsx │ │ └── styles.ts │ ├── DBottomFilter │ │ └── index.tsx │ ├── DButton │ │ ├── index.tsx │ │ └── styles.ts │ ├── DCarousel │ │ ├── index.tsx │ │ └── styles.ts │ ├── DCircularRating │ │ ├── index.tsx │ │ └── styles.ts │ ├── DColorSelector │ │ └── index.tsx │ ├── DEpisodeCard │ │ ├── index.tsx │ │ └── styles.ts │ ├── DExternalModal │ │ ├── index.tsx │ │ └── styles.ts │ ├── DHelmet │ │ ├── HelmetConstants.js │ │ ├── HelmetUtils.js │ │ ├── index.js │ │ └── sideEffect.js │ ├── DInfoModal │ │ ├── index.tsx │ │ └── styles.ts │ ├── DItemCard │ │ ├── index.tsx │ │ └── styles.ts │ ├── DItemLogo │ │ ├── index.tsx │ │ └── styles.ts │ ├── DLoader │ │ ├── index.tsx │ │ └── styles.ts │ ├── DNavbar │ │ ├── index.tsx │ │ └── styles.ts │ ├── DPersonCard │ │ ├── index.tsx │ │ └── styles.ts │ ├── DReview │ │ ├── DReviewCard │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── index.tsx │ │ └── styles.ts │ ├── DSearchStyles │ │ └── index.tsx │ ├── DSeasonCard │ │ ├── index.tsx │ │ └── styles.ts │ ├── DSelect │ │ ├── index.tsx │ │ └── styles.ts │ ├── DSlider │ │ ├── index.tsx │ │ └── styles.ts │ ├── DSpacer │ │ ├── index.tsx │ │ └── styles.ts │ ├── DStreamModal │ │ ├── index.tsx │ │ └── styles.ts │ ├── DTextField │ │ ├── index.tsx │ │ └── styles.ts │ ├── DVideoCard │ │ ├── index.tsx │ │ └── styles.ts │ ├── DVideoModal │ │ ├── index.tsx │ │ └── styles.ts │ └── DWebPlayer │ │ ├── DWebPlayerBase.tsx │ │ ├── DWebPlaylist.tsx │ │ └── index.tsx ├── config.ts ├── decleration.d.ts ├── index.tsx ├── pages │ ├── Browse │ │ ├── index.tsx │ │ └── styles.ts │ ├── Callback │ │ └── index.tsx │ ├── Disconnected │ │ ├── index.tsx │ │ └── styles.ts │ ├── Episode │ │ └── index.tsx │ ├── Home │ │ ├── index.tsx │ │ └── styles.ts │ ├── Movie │ │ ├── index.tsx │ │ └── styles.ts │ ├── NotFound │ │ ├── index.tsx │ │ └── styles.ts │ ├── Season │ │ ├── index.tsx │ │ └── styles.ts │ ├── Series │ │ ├── index.tsx │ │ └── styles.ts │ ├── Settings │ │ ├── assets │ │ │ ├── logo-full-dark.svg │ │ │ └── logo-full-light.svg │ │ ├── components │ │ │ └── NavBar.tsx │ │ ├── index.tsx │ │ ├── pages │ │ │ ├── App │ │ │ │ └── index.tsx │ │ │ ├── Auth0 │ │ │ │ └── index.tsx │ │ │ ├── Categories │ │ │ │ ├── Category.tsx │ │ │ │ └── index.tsx │ │ │ ├── Dev │ │ │ │ └── index.tsx │ │ │ ├── Interface │ │ │ │ └── index.tsx │ │ │ ├── Other │ │ │ │ └── index.tsx │ │ │ └── Providers │ │ │ │ ├── GDriveTokenGeneratorPage.tsx │ │ │ │ ├── OneDriveTokenGeneratorPage.tsx │ │ │ │ └── index.tsx │ │ ├── styles │ │ │ └── globals.css │ │ └── utilities │ │ │ └── tokens.ts │ └── Setup │ │ └── index.tsx ├── styles │ ├── DCarousel.module.css │ └── globals.css ├── theme │ ├── darkTheme.ts │ └── lightTheme.ts └── utilities │ ├── electronServer.ts │ ├── getOs.ts │ ├── guid.ts │ ├── human.ts │ ├── isElectron.ts │ ├── requests.ts │ ├── useBreakpoint.ts │ └── useNetworkStatus.ts └── tsconfig.json /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/.env.development -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- 1 | REACT_APP_SERVER_URL= 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/README.md -------------------------------------------------------------------------------- /config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/config-overrides.js -------------------------------------------------------------------------------- /electron/electron-builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/electron/electron-builder.json -------------------------------------------------------------------------------- /electron/icons/512x512.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/electron/icons/512x512.ico -------------------------------------------------------------------------------- /electron/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/electron/index.ts -------------------------------------------------------------------------------- /electron/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/electron/preload.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/MuiClassNameSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/MuiClassNameSetup.ts -------------------------------------------------------------------------------- /src/assets/disconnected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/assets/disconnected.png -------------------------------------------------------------------------------- /src/assets/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/assets/error.png -------------------------------------------------------------------------------- /src/assets/logo-full-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/assets/logo-full-dark.svg -------------------------------------------------------------------------------- /src/assets/logo-full-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/assets/logo-full-light.svg -------------------------------------------------------------------------------- /src/assets/no-image-poster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/assets/no-image-poster.svg -------------------------------------------------------------------------------- /src/components/DBottomBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DBottomBar/index.tsx -------------------------------------------------------------------------------- /src/components/DBottomBar/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DBottomBar/styles.ts -------------------------------------------------------------------------------- /src/components/DBottomFilter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DBottomFilter/index.tsx -------------------------------------------------------------------------------- /src/components/DButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DButton/index.tsx -------------------------------------------------------------------------------- /src/components/DButton/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DButton/styles.ts -------------------------------------------------------------------------------- /src/components/DCarousel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DCarousel/index.tsx -------------------------------------------------------------------------------- /src/components/DCarousel/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DCarousel/styles.ts -------------------------------------------------------------------------------- /src/components/DCircularRating/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DCircularRating/index.tsx -------------------------------------------------------------------------------- /src/components/DCircularRating/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DCircularRating/styles.ts -------------------------------------------------------------------------------- /src/components/DColorSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DColorSelector/index.tsx -------------------------------------------------------------------------------- /src/components/DEpisodeCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DEpisodeCard/index.tsx -------------------------------------------------------------------------------- /src/components/DEpisodeCard/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DEpisodeCard/styles.ts -------------------------------------------------------------------------------- /src/components/DExternalModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DExternalModal/index.tsx -------------------------------------------------------------------------------- /src/components/DExternalModal/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DExternalModal/styles.ts -------------------------------------------------------------------------------- /src/components/DHelmet/HelmetConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DHelmet/HelmetConstants.js -------------------------------------------------------------------------------- /src/components/DHelmet/HelmetUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DHelmet/HelmetUtils.js -------------------------------------------------------------------------------- /src/components/DHelmet/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DHelmet/index.js -------------------------------------------------------------------------------- /src/components/DHelmet/sideEffect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DHelmet/sideEffect.js -------------------------------------------------------------------------------- /src/components/DInfoModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DInfoModal/index.tsx -------------------------------------------------------------------------------- /src/components/DInfoModal/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DInfoModal/styles.ts -------------------------------------------------------------------------------- /src/components/DItemCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DItemCard/index.tsx -------------------------------------------------------------------------------- /src/components/DItemCard/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DItemCard/styles.ts -------------------------------------------------------------------------------- /src/components/DItemLogo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DItemLogo/index.tsx -------------------------------------------------------------------------------- /src/components/DItemLogo/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DItemLogo/styles.ts -------------------------------------------------------------------------------- /src/components/DLoader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DLoader/index.tsx -------------------------------------------------------------------------------- /src/components/DLoader/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DLoader/styles.ts -------------------------------------------------------------------------------- /src/components/DNavbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DNavbar/index.tsx -------------------------------------------------------------------------------- /src/components/DNavbar/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DNavbar/styles.ts -------------------------------------------------------------------------------- /src/components/DPersonCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DPersonCard/index.tsx -------------------------------------------------------------------------------- /src/components/DPersonCard/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DPersonCard/styles.ts -------------------------------------------------------------------------------- /src/components/DReview/DReviewCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DReview/DReviewCard/index.tsx -------------------------------------------------------------------------------- /src/components/DReview/DReviewCard/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DReview/DReviewCard/styles.ts -------------------------------------------------------------------------------- /src/components/DReview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DReview/index.tsx -------------------------------------------------------------------------------- /src/components/DReview/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DReview/styles.ts -------------------------------------------------------------------------------- /src/components/DSearchStyles/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DSearchStyles/index.tsx -------------------------------------------------------------------------------- /src/components/DSeasonCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DSeasonCard/index.tsx -------------------------------------------------------------------------------- /src/components/DSeasonCard/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DSeasonCard/styles.ts -------------------------------------------------------------------------------- /src/components/DSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DSelect/index.tsx -------------------------------------------------------------------------------- /src/components/DSelect/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DSelect/styles.ts -------------------------------------------------------------------------------- /src/components/DSlider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DSlider/index.tsx -------------------------------------------------------------------------------- /src/components/DSlider/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DSlider/styles.ts -------------------------------------------------------------------------------- /src/components/DSpacer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DSpacer/index.tsx -------------------------------------------------------------------------------- /src/components/DSpacer/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DSpacer/styles.ts -------------------------------------------------------------------------------- /src/components/DStreamModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DStreamModal/index.tsx -------------------------------------------------------------------------------- /src/components/DStreamModal/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DStreamModal/styles.ts -------------------------------------------------------------------------------- /src/components/DTextField/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DTextField/index.tsx -------------------------------------------------------------------------------- /src/components/DTextField/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DTextField/styles.ts -------------------------------------------------------------------------------- /src/components/DVideoCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DVideoCard/index.tsx -------------------------------------------------------------------------------- /src/components/DVideoCard/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DVideoCard/styles.ts -------------------------------------------------------------------------------- /src/components/DVideoModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DVideoModal/index.tsx -------------------------------------------------------------------------------- /src/components/DVideoModal/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DVideoModal/styles.ts -------------------------------------------------------------------------------- /src/components/DWebPlayer/DWebPlayerBase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DWebPlayer/DWebPlayerBase.tsx -------------------------------------------------------------------------------- /src/components/DWebPlayer/DWebPlaylist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DWebPlayer/DWebPlaylist.tsx -------------------------------------------------------------------------------- /src/components/DWebPlayer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/components/DWebPlayer/index.tsx -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/decleration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/decleration.d.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/pages/Browse/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Browse/index.tsx -------------------------------------------------------------------------------- /src/pages/Browse/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Browse/styles.ts -------------------------------------------------------------------------------- /src/pages/Callback/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Callback/index.tsx -------------------------------------------------------------------------------- /src/pages/Disconnected/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Disconnected/index.tsx -------------------------------------------------------------------------------- /src/pages/Disconnected/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Disconnected/styles.ts -------------------------------------------------------------------------------- /src/pages/Episode/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Episode/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Home/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Home/styles.ts -------------------------------------------------------------------------------- /src/pages/Movie/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Movie/index.tsx -------------------------------------------------------------------------------- /src/pages/Movie/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Movie/styles.ts -------------------------------------------------------------------------------- /src/pages/NotFound/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/NotFound/index.tsx -------------------------------------------------------------------------------- /src/pages/NotFound/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/NotFound/styles.ts -------------------------------------------------------------------------------- /src/pages/Season/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Season/index.tsx -------------------------------------------------------------------------------- /src/pages/Season/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Season/styles.ts -------------------------------------------------------------------------------- /src/pages/Series/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Series/index.tsx -------------------------------------------------------------------------------- /src/pages/Series/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Series/styles.ts -------------------------------------------------------------------------------- /src/pages/Settings/assets/logo-full-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Settings/assets/logo-full-dark.svg -------------------------------------------------------------------------------- /src/pages/Settings/assets/logo-full-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Settings/assets/logo-full-light.svg -------------------------------------------------------------------------------- /src/pages/Settings/components/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Settings/components/NavBar.tsx -------------------------------------------------------------------------------- /src/pages/Settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Settings/index.tsx -------------------------------------------------------------------------------- /src/pages/Settings/pages/App/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Settings/pages/App/index.tsx -------------------------------------------------------------------------------- /src/pages/Settings/pages/Auth0/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Settings/pages/Auth0/index.tsx -------------------------------------------------------------------------------- /src/pages/Settings/pages/Categories/Category.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Settings/pages/Categories/Category.tsx -------------------------------------------------------------------------------- /src/pages/Settings/pages/Categories/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Settings/pages/Categories/index.tsx -------------------------------------------------------------------------------- /src/pages/Settings/pages/Dev/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Settings/pages/Dev/index.tsx -------------------------------------------------------------------------------- /src/pages/Settings/pages/Interface/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Settings/pages/Interface/index.tsx -------------------------------------------------------------------------------- /src/pages/Settings/pages/Other/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Settings/pages/Other/index.tsx -------------------------------------------------------------------------------- /src/pages/Settings/pages/Providers/GDriveTokenGeneratorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Settings/pages/Providers/GDriveTokenGeneratorPage.tsx -------------------------------------------------------------------------------- /src/pages/Settings/pages/Providers/OneDriveTokenGeneratorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Settings/pages/Providers/OneDriveTokenGeneratorPage.tsx -------------------------------------------------------------------------------- /src/pages/Settings/pages/Providers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Settings/pages/Providers/index.tsx -------------------------------------------------------------------------------- /src/pages/Settings/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Settings/styles/globals.css -------------------------------------------------------------------------------- /src/pages/Settings/utilities/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Settings/utilities/tokens.ts -------------------------------------------------------------------------------- /src/pages/Setup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/pages/Setup/index.tsx -------------------------------------------------------------------------------- /src/styles/DCarousel.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/styles/DCarousel.module.css -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/theme/darkTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/theme/darkTheme.ts -------------------------------------------------------------------------------- /src/theme/lightTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/theme/lightTheme.ts -------------------------------------------------------------------------------- /src/utilities/electronServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/utilities/electronServer.ts -------------------------------------------------------------------------------- /src/utilities/getOs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/utilities/getOs.ts -------------------------------------------------------------------------------- /src/utilities/guid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/utilities/guid.ts -------------------------------------------------------------------------------- /src/utilities/human.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/utilities/human.ts -------------------------------------------------------------------------------- /src/utilities/isElectron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/utilities/isElectron.ts -------------------------------------------------------------------------------- /src/utilities/requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/utilities/requests.ts -------------------------------------------------------------------------------- /src/utilities/useBreakpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/utilities/useBreakpoint.ts -------------------------------------------------------------------------------- /src/utilities/useNetworkStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/src/utilities/useNetworkStatus.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesterLib/Frontend/HEAD/tsconfig.json --------------------------------------------------------------------------------