├── .eslintrc.json ├── .gitignore ├── README.md ├── additional.d.ts ├── lib ├── Watchlist.js ├── appendeps.js ├── bookmark.ts ├── dayjs.ts └── skip-op-es.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── favicon.ico └── logo │ ├── favicon-1.png │ ├── favicon-2.png │ ├── favicon-3.png │ ├── favicon-4.png │ ├── favicon-5.png │ ├── favicon-6.png │ ├── favicon-7.png │ ├── favicon-8.png │ └── favicon-9.png ├── src ├── app │ ├── anime │ │ └── [animeId] │ │ │ └── page.tsx │ ├── genres │ │ └── page.tsx │ ├── globals.css │ ├── layout.tsx │ ├── page.tsx │ ├── popular │ │ └── page.tsx │ ├── search │ │ └── [...slug] │ │ │ └── page.tsx │ └── w │ │ └── [...slug] │ │ └── page.tsx └── components │ ├── SettingsDropdown.tsx │ ├── Watch.tsx │ ├── card │ ├── Card.tsx │ ├── EpisodeCard.tsx │ ├── ListCard.tsx │ ├── ProgressBar.tsx │ ├── TimeAgo.tsx │ └── WatchCard.tsx │ ├── contact │ └── Contact.tsx │ ├── container │ └── GridContainer.tsx │ ├── countdown │ └── AiringCountDown.tsx │ ├── details │ ├── AnimeDetails.tsx │ ├── Characters.tsx │ ├── OpEd.tsx │ ├── Overview.tsx │ ├── Relations.tsx │ ├── Similar.tsx │ └── Trailer.tsx │ ├── episodes │ ├── Episodes.tsx │ └── EpisodesPagination.tsx │ ├── footer │ └── Footer.tsx │ ├── head │ └── Head.tsx │ ├── home │ └── HomeSwiper.tsx │ ├── modal │ └── ReportModal.tsx │ ├── notfound │ └── NotFound.tsx │ ├── player │ └── UseThrottle.tsx │ ├── schedule │ └── Schedule.tsx │ ├── search │ └── Search.js │ ├── tabs │ ├── DetailsTabs.tsx │ ├── GenresTab.tsx │ └── Tabs.tsx │ ├── theme │ └── Theme.tsx │ ├── trailer │ └── Trailer.tsx │ ├── watch │ └── EpisodeContainer.tsx │ └── watchlist │ ├── MyList.tsx │ ├── WatchList.tsx │ ├── getAnimeList.ts │ └── getWatchList.ts ├── store └── store.ts ├── tailwind.config.ts ├── tsconfig.json ├── types └── types.ts ├── typings.d.ts └── utils ├── Vars.ts └── supabase.ts /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/README.md -------------------------------------------------------------------------------- /additional.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/additional.d.ts -------------------------------------------------------------------------------- /lib/Watchlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/lib/Watchlist.js -------------------------------------------------------------------------------- /lib/appendeps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/lib/appendeps.js -------------------------------------------------------------------------------- /lib/bookmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/lib/bookmark.ts -------------------------------------------------------------------------------- /lib/dayjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/lib/dayjs.ts -------------------------------------------------------------------------------- /lib/skip-op-es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/lib/skip-op-es.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo/favicon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/public/logo/favicon-1.png -------------------------------------------------------------------------------- /public/logo/favicon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/public/logo/favicon-2.png -------------------------------------------------------------------------------- /public/logo/favicon-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/public/logo/favicon-3.png -------------------------------------------------------------------------------- /public/logo/favicon-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/public/logo/favicon-4.png -------------------------------------------------------------------------------- /public/logo/favicon-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/public/logo/favicon-5.png -------------------------------------------------------------------------------- /public/logo/favicon-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/public/logo/favicon-6.png -------------------------------------------------------------------------------- /public/logo/favicon-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/public/logo/favicon-7.png -------------------------------------------------------------------------------- /public/logo/favicon-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/public/logo/favicon-8.png -------------------------------------------------------------------------------- /public/logo/favicon-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/public/logo/favicon-9.png -------------------------------------------------------------------------------- /src/app/anime/[animeId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/app/anime/[animeId]/page.tsx -------------------------------------------------------------------------------- /src/app/genres/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/app/genres/page.tsx -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/popular/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/app/popular/page.tsx -------------------------------------------------------------------------------- /src/app/search/[...slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/app/search/[...slug]/page.tsx -------------------------------------------------------------------------------- /src/app/w/[...slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/app/w/[...slug]/page.tsx -------------------------------------------------------------------------------- /src/components/SettingsDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/SettingsDropdown.tsx -------------------------------------------------------------------------------- /src/components/Watch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/Watch.tsx -------------------------------------------------------------------------------- /src/components/card/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/card/Card.tsx -------------------------------------------------------------------------------- /src/components/card/EpisodeCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/card/EpisodeCard.tsx -------------------------------------------------------------------------------- /src/components/card/ListCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/card/ListCard.tsx -------------------------------------------------------------------------------- /src/components/card/ProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/card/ProgressBar.tsx -------------------------------------------------------------------------------- /src/components/card/TimeAgo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/card/TimeAgo.tsx -------------------------------------------------------------------------------- /src/components/card/WatchCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/card/WatchCard.tsx -------------------------------------------------------------------------------- /src/components/contact/Contact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/contact/Contact.tsx -------------------------------------------------------------------------------- /src/components/container/GridContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/container/GridContainer.tsx -------------------------------------------------------------------------------- /src/components/countdown/AiringCountDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/countdown/AiringCountDown.tsx -------------------------------------------------------------------------------- /src/components/details/AnimeDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/details/AnimeDetails.tsx -------------------------------------------------------------------------------- /src/components/details/Characters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/details/Characters.tsx -------------------------------------------------------------------------------- /src/components/details/OpEd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/details/OpEd.tsx -------------------------------------------------------------------------------- /src/components/details/Overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/details/Overview.tsx -------------------------------------------------------------------------------- /src/components/details/Relations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/details/Relations.tsx -------------------------------------------------------------------------------- /src/components/details/Similar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/details/Similar.tsx -------------------------------------------------------------------------------- /src/components/details/Trailer.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/episodes/Episodes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/episodes/Episodes.tsx -------------------------------------------------------------------------------- /src/components/episodes/EpisodesPagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/episodes/EpisodesPagination.tsx -------------------------------------------------------------------------------- /src/components/footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/footer/Footer.tsx -------------------------------------------------------------------------------- /src/components/head/Head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/head/Head.tsx -------------------------------------------------------------------------------- /src/components/home/HomeSwiper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/home/HomeSwiper.tsx -------------------------------------------------------------------------------- /src/components/modal/ReportModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/modal/ReportModal.tsx -------------------------------------------------------------------------------- /src/components/notfound/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/notfound/NotFound.tsx -------------------------------------------------------------------------------- /src/components/player/UseThrottle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/player/UseThrottle.tsx -------------------------------------------------------------------------------- /src/components/schedule/Schedule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/schedule/Schedule.tsx -------------------------------------------------------------------------------- /src/components/search/Search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/search/Search.js -------------------------------------------------------------------------------- /src/components/tabs/DetailsTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/tabs/DetailsTabs.tsx -------------------------------------------------------------------------------- /src/components/tabs/GenresTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/tabs/GenresTab.tsx -------------------------------------------------------------------------------- /src/components/tabs/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/tabs/Tabs.tsx -------------------------------------------------------------------------------- /src/components/theme/Theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/theme/Theme.tsx -------------------------------------------------------------------------------- /src/components/trailer/Trailer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/trailer/Trailer.tsx -------------------------------------------------------------------------------- /src/components/watch/EpisodeContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/watch/EpisodeContainer.tsx -------------------------------------------------------------------------------- /src/components/watchlist/MyList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/watchlist/MyList.tsx -------------------------------------------------------------------------------- /src/components/watchlist/WatchList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/watchlist/WatchList.tsx -------------------------------------------------------------------------------- /src/components/watchlist/getAnimeList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/watchlist/getAnimeList.ts -------------------------------------------------------------------------------- /src/components/watchlist/getWatchList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/src/components/watchlist/getWatchList.ts -------------------------------------------------------------------------------- /store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/store/store.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/types/types.ts -------------------------------------------------------------------------------- /typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/typings.d.ts -------------------------------------------------------------------------------- /utils/Vars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/utils/Vars.ts -------------------------------------------------------------------------------- /utils/supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottoh3x/animex/HEAD/utils/supabase.ts --------------------------------------------------------------------------------