├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .idea ├── .gitignore ├── anime-flix.iml ├── codeStyles │ └── codeStyleConfig.xml ├── inspectionProfiles │ └── Project_Default.xml ├── modules.xml ├── prettier.xml └── vcs.xml ├── .prettier.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo-icon.png ├── logo-long.png ├── manifest-icon-192.maskable.png ├── manifest.json ├── robots.txt └── service-worker.js ├── src ├── App.tsx ├── assets │ ├── calender.svg │ ├── episodes.svg │ ├── login-background.webp │ ├── logo-icon.png │ ├── logo-long.png │ ├── logo.svg │ ├── play.svg │ ├── random.svg │ ├── spirited.png │ ├── subtitle.svg │ ├── thumbs-down.svg │ ├── thumbs-up.svg │ └── time.svg ├── backend │ ├── anime_api.ts │ └── users.ts ├── components │ ├── Bookmarks │ │ ├── Bookmarks.tsx │ │ └── LocalPagination.tsx │ ├── Home │ │ ├── AnimeTrailerModal.tsx │ │ ├── AnimeTrailersHome.tsx │ │ ├── ContinueWatching.tsx │ │ ├── Hero.tsx │ │ ├── Home.tsx │ │ ├── Popular.tsx │ │ ├── RecentReleases.tsx │ │ ├── ToggleAiring.tsx │ │ └── TopAnime.tsx │ ├── Login │ │ ├── ForgotPassword.tsx │ │ ├── Login.tsx │ │ ├── Register.tsx │ │ └── google │ │ │ ├── LoginButton.tsx │ │ │ └── LogoutButton.tsx │ ├── Random │ │ └── Random.tsx │ ├── SearchResults │ │ ├── Filter.tsx │ │ ├── FormatDropdown.tsx │ │ ├── GenreButton.tsx │ │ ├── GenresButtons.tsx │ │ ├── SearchResults.tsx │ │ ├── SortDropdown.tsx │ │ ├── StatusDropdown.tsx │ │ └── YearDropdown.tsx │ ├── Shared │ │ ├── AnimeGridStream.tsx │ │ ├── Comments.tsx │ │ ├── EpisodeDropdown.tsx │ │ ├── Install-App.js │ │ ├── MobileNav.tsx │ │ ├── ModalStream.tsx │ │ ├── Navbar.tsx │ │ ├── Notification.tsx │ │ ├── Pagination.tsx │ │ ├── ProviderDropdown.tsx │ │ ├── Recommended.tsx │ │ ├── Relations.tsx │ │ ├── SearchBar.tsx │ │ ├── SheetStream.tsx │ │ ├── ToggleDub.tsx │ │ └── reUsableFunctions.ts │ └── videoplayer │ │ ├── ArtPlayer.tsx │ │ └── ArtPlayerApp.tsx ├── custom.d.ts ├── firebase │ └── Firebase.js ├── hooks │ ├── useNotification.ts │ └── useWindowResize.ts ├── index.css ├── index.tsx ├── redux │ ├── filter-slice.tsx │ ├── google-slice.tsx │ ├── notification-slice.tsx │ ├── search-slice.tsx │ ├── store.tsx │ └── videoState-slice.tsx ├── stylesheet.css └── types │ ├── initialDataState.ts │ └── type.ts ├── tailwind.config.js └── tsconfig.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/anime-flix.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/.idea/anime-flix.iml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/prettier.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/.idea/prettier.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.prettier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/.prettier.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/public/logo-icon.png -------------------------------------------------------------------------------- /public/logo-long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/public/logo-long.png -------------------------------------------------------------------------------- /public/manifest-icon-192.maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/public/manifest-icon-192.maskable.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/public/service-worker.js -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/calender.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/assets/calender.svg -------------------------------------------------------------------------------- /src/assets/episodes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/assets/episodes.svg -------------------------------------------------------------------------------- /src/assets/login-background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/assets/login-background.webp -------------------------------------------------------------------------------- /src/assets/logo-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/assets/logo-icon.png -------------------------------------------------------------------------------- /src/assets/logo-long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/assets/logo-long.png -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/assets/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/assets/play.svg -------------------------------------------------------------------------------- /src/assets/random.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/assets/random.svg -------------------------------------------------------------------------------- /src/assets/spirited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/assets/spirited.png -------------------------------------------------------------------------------- /src/assets/subtitle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/assets/subtitle.svg -------------------------------------------------------------------------------- /src/assets/thumbs-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/assets/thumbs-down.svg -------------------------------------------------------------------------------- /src/assets/thumbs-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/assets/thumbs-up.svg -------------------------------------------------------------------------------- /src/assets/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/assets/time.svg -------------------------------------------------------------------------------- /src/backend/anime_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/backend/anime_api.ts -------------------------------------------------------------------------------- /src/backend/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/backend/users.ts -------------------------------------------------------------------------------- /src/components/Bookmarks/Bookmarks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Bookmarks/Bookmarks.tsx -------------------------------------------------------------------------------- /src/components/Bookmarks/LocalPagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Bookmarks/LocalPagination.tsx -------------------------------------------------------------------------------- /src/components/Home/AnimeTrailerModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Home/AnimeTrailerModal.tsx -------------------------------------------------------------------------------- /src/components/Home/AnimeTrailersHome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Home/AnimeTrailersHome.tsx -------------------------------------------------------------------------------- /src/components/Home/ContinueWatching.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Home/ContinueWatching.tsx -------------------------------------------------------------------------------- /src/components/Home/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Home/Hero.tsx -------------------------------------------------------------------------------- /src/components/Home/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Home/Home.tsx -------------------------------------------------------------------------------- /src/components/Home/Popular.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Home/Popular.tsx -------------------------------------------------------------------------------- /src/components/Home/RecentReleases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Home/RecentReleases.tsx -------------------------------------------------------------------------------- /src/components/Home/ToggleAiring.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Home/ToggleAiring.tsx -------------------------------------------------------------------------------- /src/components/Home/TopAnime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Home/TopAnime.tsx -------------------------------------------------------------------------------- /src/components/Login/ForgotPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Login/ForgotPassword.tsx -------------------------------------------------------------------------------- /src/components/Login/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Login/Login.tsx -------------------------------------------------------------------------------- /src/components/Login/Register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Login/Register.tsx -------------------------------------------------------------------------------- /src/components/Login/google/LoginButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Login/google/LoginButton.tsx -------------------------------------------------------------------------------- /src/components/Login/google/LogoutButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Login/google/LogoutButton.tsx -------------------------------------------------------------------------------- /src/components/Random/Random.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Random/Random.tsx -------------------------------------------------------------------------------- /src/components/SearchResults/Filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/SearchResults/Filter.tsx -------------------------------------------------------------------------------- /src/components/SearchResults/FormatDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/SearchResults/FormatDropdown.tsx -------------------------------------------------------------------------------- /src/components/SearchResults/GenreButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/SearchResults/GenreButton.tsx -------------------------------------------------------------------------------- /src/components/SearchResults/GenresButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/SearchResults/GenresButtons.tsx -------------------------------------------------------------------------------- /src/components/SearchResults/SearchResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/SearchResults/SearchResults.tsx -------------------------------------------------------------------------------- /src/components/SearchResults/SortDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/SearchResults/SortDropdown.tsx -------------------------------------------------------------------------------- /src/components/SearchResults/StatusDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/SearchResults/StatusDropdown.tsx -------------------------------------------------------------------------------- /src/components/SearchResults/YearDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/SearchResults/YearDropdown.tsx -------------------------------------------------------------------------------- /src/components/Shared/AnimeGridStream.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Shared/AnimeGridStream.tsx -------------------------------------------------------------------------------- /src/components/Shared/Comments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Shared/Comments.tsx -------------------------------------------------------------------------------- /src/components/Shared/EpisodeDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Shared/EpisodeDropdown.tsx -------------------------------------------------------------------------------- /src/components/Shared/Install-App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Shared/Install-App.js -------------------------------------------------------------------------------- /src/components/Shared/MobileNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Shared/MobileNav.tsx -------------------------------------------------------------------------------- /src/components/Shared/ModalStream.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Shared/ModalStream.tsx -------------------------------------------------------------------------------- /src/components/Shared/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Shared/Navbar.tsx -------------------------------------------------------------------------------- /src/components/Shared/Notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Shared/Notification.tsx -------------------------------------------------------------------------------- /src/components/Shared/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Shared/Pagination.tsx -------------------------------------------------------------------------------- /src/components/Shared/ProviderDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Shared/ProviderDropdown.tsx -------------------------------------------------------------------------------- /src/components/Shared/Recommended.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Shared/Recommended.tsx -------------------------------------------------------------------------------- /src/components/Shared/Relations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Shared/Relations.tsx -------------------------------------------------------------------------------- /src/components/Shared/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Shared/SearchBar.tsx -------------------------------------------------------------------------------- /src/components/Shared/SheetStream.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Shared/SheetStream.tsx -------------------------------------------------------------------------------- /src/components/Shared/ToggleDub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Shared/ToggleDub.tsx -------------------------------------------------------------------------------- /src/components/Shared/reUsableFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/Shared/reUsableFunctions.ts -------------------------------------------------------------------------------- /src/components/videoplayer/ArtPlayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/videoplayer/ArtPlayer.tsx -------------------------------------------------------------------------------- /src/components/videoplayer/ArtPlayerApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/components/videoplayer/ArtPlayerApp.tsx -------------------------------------------------------------------------------- /src/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/custom.d.ts -------------------------------------------------------------------------------- /src/firebase/Firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/firebase/Firebase.js -------------------------------------------------------------------------------- /src/hooks/useNotification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/hooks/useNotification.ts -------------------------------------------------------------------------------- /src/hooks/useWindowResize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/hooks/useWindowResize.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/redux/filter-slice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/redux/filter-slice.tsx -------------------------------------------------------------------------------- /src/redux/google-slice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/redux/google-slice.tsx -------------------------------------------------------------------------------- /src/redux/notification-slice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/redux/notification-slice.tsx -------------------------------------------------------------------------------- /src/redux/search-slice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/redux/search-slice.tsx -------------------------------------------------------------------------------- /src/redux/store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/redux/store.tsx -------------------------------------------------------------------------------- /src/redux/videoState-slice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/redux/videoState-slice.tsx -------------------------------------------------------------------------------- /src/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/stylesheet.css -------------------------------------------------------------------------------- /src/types/initialDataState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/types/initialDataState.ts -------------------------------------------------------------------------------- /src/types/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/src/types/type.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ashanime/Ashanime-Web-App/HEAD/tsconfig.json --------------------------------------------------------------------------------