├── .gitignore ├── README.md ├── components.json ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public ├── 421f5172507433.64c983d7563d0.png ├── anime_catalog.jpg ├── anime_latest.jpg ├── anime_watched.jpg ├── body-background.png ├── homepage-cover.jpg ├── icon.png ├── manga-carousel.png ├── manga_catalog.jpg ├── manga_latest.jpg ├── manga_watched.jpg ├── manga_watched.png ├── second_cover_image.webp └── vercel.svg ├── src ├── app │ ├── globals.css │ ├── layout.jsx │ ├── page.jsx │ └── pages │ │ ├── Anime │ │ ├── details │ │ │ └── [id] │ │ │ │ └── page.jsx │ │ ├── page.jsx │ │ ├── search │ │ │ └── [id] │ │ │ │ └── page.jsx │ │ └── watch │ │ │ └── [id] │ │ │ └── page.jsx │ │ ├── Manga │ │ ├── details │ │ │ └── [id] │ │ │ │ └── page.jsx │ │ ├── page.jsx │ │ └── read │ │ │ └── [...id] │ │ │ └── page.jsx │ │ └── settings │ │ └── page.jsx ├── assets │ ├── bg.png │ ├── body-background.png │ ├── homepage_cover.jpg │ ├── mangacover.png │ ├── second_cover_image.webp │ ├── subs.png │ ├── svgIcon.svg │ └── webIcon.jpg ├── components │ ├── Anime │ │ ├── AnimeCover.jsx │ │ ├── BasicDetails.jsx │ │ ├── CharacterData.jsx │ │ ├── EpisodeSelect.jsx │ │ ├── PromotionalVideos.jsx │ │ ├── ReusableCarouselAlt.jsx │ │ ├── Search │ │ │ ├── SearchItem.jsx │ │ │ └── Select.jsx │ │ └── Watch │ │ │ ├── AnimeRelations.jsx │ │ │ ├── EpisodeList.jsx │ │ │ ├── ReusableVerticalCarousel.jsx │ │ │ ├── ServerSelector.jsx │ │ │ ├── VideoPlayer.jsx │ │ │ └── VideoPlayerAlt.jsx │ ├── BigCarousel.jsx │ ├── EstimatedSchedule.jsx │ ├── Manga │ │ ├── BasicDetails.jsx │ │ ├── BreadCrumb.jsx │ │ ├── ChapterList.jsx │ │ ├── HomeCarousel.jsx │ │ ├── MangaCover.jsx │ │ ├── MangaTable.jsx │ │ ├── ReusableCardStacks.jsx │ │ ├── ReusableCarousel.jsx │ │ ├── Select.jsx │ │ └── TrendingTabs.jsx │ ├── ModeToggle.jsx │ ├── NavigationItems.tsx │ ├── ReusableCardStacks.jsx │ ├── ReusableCarousel.jsx │ ├── ReusableStack.jsx │ ├── Select.jsx │ ├── ThemeProvider.tsx │ ├── TopAnimesTable.jsx │ ├── category-cards.tsx │ ├── common │ │ ├── BackgroundOverlay.jsx │ │ ├── Drawer.tsx │ │ ├── Footer.jsx │ │ └── Header.jsx │ ├── continue-watching-cards.jsx │ ├── continue-watching-section.jsx │ └── ui │ │ ├── artplayer.jsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── carousel.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── navigation-menu.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── switch.tsx │ │ └── tabs.tsx ├── hooks │ ├── ApiMapper.jsx │ ├── generateRandomColor.jsx │ ├── jaro-winkler.jsx │ ├── useApi.jsx │ └── useCurrentWeekWithDetails.jsx ├── lib │ ├── fallbackData.jsx │ └── utils.ts └── provider │ └── database.jsx ├── tailwind.config.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/components.json -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/421f5172507433.64c983d7563d0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/public/421f5172507433.64c983d7563d0.png -------------------------------------------------------------------------------- /public/anime_catalog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/public/anime_catalog.jpg -------------------------------------------------------------------------------- /public/anime_latest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/public/anime_latest.jpg -------------------------------------------------------------------------------- /public/anime_watched.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/public/anime_watched.jpg -------------------------------------------------------------------------------- /public/body-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/public/body-background.png -------------------------------------------------------------------------------- /public/homepage-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/public/homepage-cover.jpg -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/manga-carousel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/public/manga-carousel.png -------------------------------------------------------------------------------- /public/manga_catalog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/public/manga_catalog.jpg -------------------------------------------------------------------------------- /public/manga_latest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/public/manga_latest.jpg -------------------------------------------------------------------------------- /public/manga_watched.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/public/manga_watched.jpg -------------------------------------------------------------------------------- /public/manga_watched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/public/manga_watched.png -------------------------------------------------------------------------------- /public/second_cover_image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/public/second_cover_image.webp -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/app/layout.jsx -------------------------------------------------------------------------------- /src/app/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/app/page.jsx -------------------------------------------------------------------------------- /src/app/pages/Anime/details/[id]/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/app/pages/Anime/details/[id]/page.jsx -------------------------------------------------------------------------------- /src/app/pages/Anime/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/app/pages/Anime/page.jsx -------------------------------------------------------------------------------- /src/app/pages/Anime/search/[id]/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/app/pages/Anime/search/[id]/page.jsx -------------------------------------------------------------------------------- /src/app/pages/Anime/watch/[id]/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/app/pages/Anime/watch/[id]/page.jsx -------------------------------------------------------------------------------- /src/app/pages/Manga/details/[id]/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/app/pages/Manga/details/[id]/page.jsx -------------------------------------------------------------------------------- /src/app/pages/Manga/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/app/pages/Manga/page.jsx -------------------------------------------------------------------------------- /src/app/pages/Manga/read/[...id]/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/app/pages/Manga/read/[...id]/page.jsx -------------------------------------------------------------------------------- /src/app/pages/settings/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/app/pages/settings/page.jsx -------------------------------------------------------------------------------- /src/assets/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/assets/bg.png -------------------------------------------------------------------------------- /src/assets/body-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/assets/body-background.png -------------------------------------------------------------------------------- /src/assets/homepage_cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/assets/homepage_cover.jpg -------------------------------------------------------------------------------- /src/assets/mangacover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/assets/mangacover.png -------------------------------------------------------------------------------- /src/assets/second_cover_image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/assets/second_cover_image.webp -------------------------------------------------------------------------------- /src/assets/subs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/assets/subs.png -------------------------------------------------------------------------------- /src/assets/svgIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/assets/svgIcon.svg -------------------------------------------------------------------------------- /src/assets/webIcon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/assets/webIcon.jpg -------------------------------------------------------------------------------- /src/components/Anime/AnimeCover.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/Anime/AnimeCover.jsx -------------------------------------------------------------------------------- /src/components/Anime/BasicDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/Anime/BasicDetails.jsx -------------------------------------------------------------------------------- /src/components/Anime/CharacterData.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/Anime/CharacterData.jsx -------------------------------------------------------------------------------- /src/components/Anime/EpisodeSelect.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/Anime/EpisodeSelect.jsx -------------------------------------------------------------------------------- /src/components/Anime/PromotionalVideos.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/Anime/PromotionalVideos.jsx -------------------------------------------------------------------------------- /src/components/Anime/ReusableCarouselAlt.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/Anime/ReusableCarouselAlt.jsx -------------------------------------------------------------------------------- /src/components/Anime/Search/SearchItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/Anime/Search/SearchItem.jsx -------------------------------------------------------------------------------- /src/components/Anime/Search/Select.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/Anime/Search/Select.jsx -------------------------------------------------------------------------------- /src/components/Anime/Watch/AnimeRelations.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/Anime/Watch/AnimeRelations.jsx -------------------------------------------------------------------------------- /src/components/Anime/Watch/EpisodeList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/Anime/Watch/EpisodeList.jsx -------------------------------------------------------------------------------- /src/components/Anime/Watch/ReusableVerticalCarousel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/Anime/Watch/ReusableVerticalCarousel.jsx -------------------------------------------------------------------------------- /src/components/Anime/Watch/ServerSelector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/Anime/Watch/ServerSelector.jsx -------------------------------------------------------------------------------- /src/components/Anime/Watch/VideoPlayer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/Anime/Watch/VideoPlayer.jsx -------------------------------------------------------------------------------- /src/components/Anime/Watch/VideoPlayerAlt.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/Anime/Watch/VideoPlayerAlt.jsx -------------------------------------------------------------------------------- /src/components/BigCarousel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/BigCarousel.jsx -------------------------------------------------------------------------------- /src/components/EstimatedSchedule.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/EstimatedSchedule.jsx -------------------------------------------------------------------------------- /src/components/Manga/BasicDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/Manga/BasicDetails.jsx -------------------------------------------------------------------------------- /src/components/Manga/BreadCrumb.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/Manga/BreadCrumb.jsx -------------------------------------------------------------------------------- /src/components/Manga/ChapterList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/Manga/ChapterList.jsx -------------------------------------------------------------------------------- /src/components/Manga/HomeCarousel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/Manga/HomeCarousel.jsx -------------------------------------------------------------------------------- /src/components/Manga/MangaCover.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/Manga/MangaCover.jsx -------------------------------------------------------------------------------- /src/components/Manga/MangaTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/Manga/MangaTable.jsx -------------------------------------------------------------------------------- /src/components/Manga/ReusableCardStacks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/Manga/ReusableCardStacks.jsx -------------------------------------------------------------------------------- /src/components/Manga/ReusableCarousel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/Manga/ReusableCarousel.jsx -------------------------------------------------------------------------------- /src/components/Manga/Select.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/Manga/Select.jsx -------------------------------------------------------------------------------- /src/components/Manga/TrendingTabs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/Manga/TrendingTabs.jsx -------------------------------------------------------------------------------- /src/components/ModeToggle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/ModeToggle.jsx -------------------------------------------------------------------------------- /src/components/NavigationItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/NavigationItems.tsx -------------------------------------------------------------------------------- /src/components/ReusableCardStacks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/ReusableCardStacks.jsx -------------------------------------------------------------------------------- /src/components/ReusableCarousel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/ReusableCarousel.jsx -------------------------------------------------------------------------------- /src/components/ReusableStack.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/ReusableStack.jsx -------------------------------------------------------------------------------- /src/components/Select.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/Select.jsx -------------------------------------------------------------------------------- /src/components/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/ThemeProvider.tsx -------------------------------------------------------------------------------- /src/components/TopAnimesTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/TopAnimesTable.jsx -------------------------------------------------------------------------------- /src/components/category-cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/category-cards.tsx -------------------------------------------------------------------------------- /src/components/common/BackgroundOverlay.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/common/BackgroundOverlay.jsx -------------------------------------------------------------------------------- /src/components/common/Drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/common/Drawer.tsx -------------------------------------------------------------------------------- /src/components/common/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/common/Footer.jsx -------------------------------------------------------------------------------- /src/components/common/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/common/Header.jsx -------------------------------------------------------------------------------- /src/components/continue-watching-cards.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/continue-watching-cards.jsx -------------------------------------------------------------------------------- /src/components/continue-watching-section.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/continue-watching-section.jsx -------------------------------------------------------------------------------- /src/components/ui/artplayer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/ui/artplayer.jsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/hooks/ApiMapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/hooks/ApiMapper.jsx -------------------------------------------------------------------------------- /src/hooks/generateRandomColor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/hooks/generateRandomColor.jsx -------------------------------------------------------------------------------- /src/hooks/jaro-winkler.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/hooks/jaro-winkler.jsx -------------------------------------------------------------------------------- /src/hooks/useApi.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/hooks/useApi.jsx -------------------------------------------------------------------------------- /src/hooks/useCurrentWeekWithDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/hooks/useCurrentWeekWithDetails.jsx -------------------------------------------------------------------------------- /src/lib/fallbackData.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/lib/fallbackData.jsx -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/provider/database.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/src/provider/database.jsx -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanYuuki/Anyme-Next/HEAD/tsconfig.json --------------------------------------------------------------------------------