├── .env.example ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── biome.json ├── components.json ├── drizzle.config.ts ├── migrations ├── 0000_loose_winter_soldier.sql └── meta │ ├── 0000_snapshot.json │ └── _journal.json ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── images │ ├── anilist-dashboard.png │ ├── bl.jpg │ ├── comment-section.png │ ├── landing.png │ ├── mark-anilist.png │ ├── placeholder-image.png │ └── socialshare-preview.png ├── web-app-manifest-192x192.png └── web-app-manifest-512x512.png ├── renovate.json ├── src ├── _actions.ts ├── app │ ├── (lobby) │ │ ├── layout.tsx │ │ └── page.tsx │ ├── (pages) │ │ ├── anime │ │ │ └── [slug] │ │ │ │ ├── [episode] │ │ │ │ ├── comment.tsx │ │ │ │ ├── episodes-scroll-area.tsx │ │ │ │ ├── loading.tsx │ │ │ │ ├── page.tsx │ │ │ │ └── update-progress.tsx │ │ │ │ ├── loading.tsx │ │ │ │ └── page.tsx │ │ ├── home │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ └── notifications │ │ │ ├── notificationList.tsx │ │ │ └── page.tsx │ ├── api │ │ ├── anilist │ │ │ └── userinfo │ │ │ │ └── route.ts │ │ └── auth │ │ │ └── [...nextauth] │ │ │ └── route.ts │ ├── apple-icon.png │ ├── error.tsx │ ├── favicon.ico │ ├── globals.css │ ├── icon.png │ ├── icon.svg │ ├── layout.tsx │ ├── manifest.json │ ├── manifest.ts │ ├── opengraph-image.png │ ├── robots.txt │ ├── sitemap.xml │ │ └── route.ts │ └── u │ │ └── [name] │ │ ├── layout.tsx │ │ ├── loading.tsx │ │ ├── page.tsx │ │ └── statistics.tsx ├── components │ ├── aceternity │ │ └── spotlight.tsx │ ├── anime-card.tsx │ ├── auth.tsx │ ├── episode-card.tsx │ ├── error-image.tsx │ ├── icons.tsx │ ├── layout │ │ ├── combobox.tsx │ │ ├── main-nav.tsx │ │ ├── mobile-nav.tsx │ │ ├── site-footer.tsx │ │ └── theme-toggle.tsx │ ├── magicui │ │ ├── grid-pattern.tsx │ │ └── shimmer-button.tsx │ ├── posthog-provider.tsx │ ├── site-header.tsx │ ├── tailwind-indicator.tsx │ ├── ui │ │ ├── aspect-ratio.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── carousel.tsx │ │ ├── command.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── label.tsx │ │ ├── progress.tsx │ │ ├── scroll-area.tsx │ │ ├── separator.tsx │ │ ├── skeleton.tsx │ │ ├── textarea.tsx │ │ └── toaster.tsx │ └── video-player │ │ ├── csr.tsx │ │ └── ssr.tsx ├── config │ └── site.ts ├── db │ ├── index.ts │ ├── query.ts │ └── schema │ │ ├── _table.ts │ │ ├── auth.ts │ │ ├── main.ts │ │ └── relations.ts ├── env.mjs ├── hooks │ ├── use-debounce.ts │ ├── use-local-storage.ts │ ├── use-lock-body.ts │ └── use-mounted.ts ├── lib │ ├── anilist.ts │ ├── consumet.ts │ ├── fonts.ts │ ├── gql-queries.ts │ ├── nextauth │ │ ├── index.ts │ │ └── session.ts │ ├── tremor.ts │ └── utils.ts └── types │ ├── anilist │ ├── activities.ts │ ├── general-stats.ts │ ├── list-stats.ts │ ├── media.ts │ └── notifications.ts │ ├── consumet │ └── index.ts │ └── index.ts ├── tailwind.config.js └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/biome.json -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/components.json -------------------------------------------------------------------------------- /drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/drizzle.config.ts -------------------------------------------------------------------------------- /migrations/0000_loose_winter_soldier.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/migrations/0000_loose_winter_soldier.sql -------------------------------------------------------------------------------- /migrations/meta/0000_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/migrations/meta/0000_snapshot.json -------------------------------------------------------------------------------- /migrations/meta/_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/migrations/meta/_journal.json -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/images/anilist-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/public/images/anilist-dashboard.png -------------------------------------------------------------------------------- /public/images/bl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/public/images/bl.jpg -------------------------------------------------------------------------------- /public/images/comment-section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/public/images/comment-section.png -------------------------------------------------------------------------------- /public/images/landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/public/images/landing.png -------------------------------------------------------------------------------- /public/images/mark-anilist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/public/images/mark-anilist.png -------------------------------------------------------------------------------- /public/images/placeholder-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/public/images/placeholder-image.png -------------------------------------------------------------------------------- /public/images/socialshare-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/public/images/socialshare-preview.png -------------------------------------------------------------------------------- /public/web-app-manifest-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/public/web-app-manifest-192x192.png -------------------------------------------------------------------------------- /public/web-app-manifest-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/public/web-app-manifest-512x512.png -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/renovate.json -------------------------------------------------------------------------------- /src/_actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/_actions.ts -------------------------------------------------------------------------------- /src/app/(lobby)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/(lobby)/layout.tsx -------------------------------------------------------------------------------- /src/app/(lobby)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/(lobby)/page.tsx -------------------------------------------------------------------------------- /src/app/(pages)/anime/[slug]/[episode]/comment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/(pages)/anime/[slug]/[episode]/comment.tsx -------------------------------------------------------------------------------- /src/app/(pages)/anime/[slug]/[episode]/episodes-scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/(pages)/anime/[slug]/[episode]/episodes-scroll-area.tsx -------------------------------------------------------------------------------- /src/app/(pages)/anime/[slug]/[episode]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/(pages)/anime/[slug]/[episode]/loading.tsx -------------------------------------------------------------------------------- /src/app/(pages)/anime/[slug]/[episode]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/(pages)/anime/[slug]/[episode]/page.tsx -------------------------------------------------------------------------------- /src/app/(pages)/anime/[slug]/[episode]/update-progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/(pages)/anime/[slug]/[episode]/update-progress.tsx -------------------------------------------------------------------------------- /src/app/(pages)/anime/[slug]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/(pages)/anime/[slug]/loading.tsx -------------------------------------------------------------------------------- /src/app/(pages)/anime/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/(pages)/anime/[slug]/page.tsx -------------------------------------------------------------------------------- /src/app/(pages)/home/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/(pages)/home/loading.tsx -------------------------------------------------------------------------------- /src/app/(pages)/home/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/(pages)/home/page.tsx -------------------------------------------------------------------------------- /src/app/(pages)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/(pages)/layout.tsx -------------------------------------------------------------------------------- /src/app/(pages)/notifications/notificationList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/(pages)/notifications/notificationList.tsx -------------------------------------------------------------------------------- /src/app/(pages)/notifications/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/(pages)/notifications/page.tsx -------------------------------------------------------------------------------- /src/app/api/anilist/userinfo/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/api/anilist/userinfo/route.ts -------------------------------------------------------------------------------- /src/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /src/app/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/apple-icon.png -------------------------------------------------------------------------------- /src/app/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/error.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/icon.png -------------------------------------------------------------------------------- /src/app/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/icon.svg -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/manifest.json -------------------------------------------------------------------------------- /src/app/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/manifest.ts -------------------------------------------------------------------------------- /src/app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/opengraph-image.png -------------------------------------------------------------------------------- /src/app/robots.txt: -------------------------------------------------------------------------------- 1 | User-Agent: * 2 | Allow: /api/og/* -------------------------------------------------------------------------------- /src/app/sitemap.xml/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/sitemap.xml/route.ts -------------------------------------------------------------------------------- /src/app/u/[name]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/u/[name]/layout.tsx -------------------------------------------------------------------------------- /src/app/u/[name]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/u/[name]/loading.tsx -------------------------------------------------------------------------------- /src/app/u/[name]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/u/[name]/page.tsx -------------------------------------------------------------------------------- /src/app/u/[name]/statistics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/app/u/[name]/statistics.tsx -------------------------------------------------------------------------------- /src/components/aceternity/spotlight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/aceternity/spotlight.tsx -------------------------------------------------------------------------------- /src/components/anime-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/anime-card.tsx -------------------------------------------------------------------------------- /src/components/auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/auth.tsx -------------------------------------------------------------------------------- /src/components/episode-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/episode-card.tsx -------------------------------------------------------------------------------- /src/components/error-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/error-image.tsx -------------------------------------------------------------------------------- /src/components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/icons.tsx -------------------------------------------------------------------------------- /src/components/layout/combobox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/layout/combobox.tsx -------------------------------------------------------------------------------- /src/components/layout/main-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/layout/main-nav.tsx -------------------------------------------------------------------------------- /src/components/layout/mobile-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/layout/mobile-nav.tsx -------------------------------------------------------------------------------- /src/components/layout/site-footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/layout/site-footer.tsx -------------------------------------------------------------------------------- /src/components/layout/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/layout/theme-toggle.tsx -------------------------------------------------------------------------------- /src/components/magicui/grid-pattern.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/magicui/grid-pattern.tsx -------------------------------------------------------------------------------- /src/components/magicui/shimmer-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/magicui/shimmer-button.tsx -------------------------------------------------------------------------------- /src/components/posthog-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/posthog-provider.tsx -------------------------------------------------------------------------------- /src/components/site-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/site-header.tsx -------------------------------------------------------------------------------- /src/components/tailwind-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/tailwind-indicator.tsx -------------------------------------------------------------------------------- /src/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/ui/command.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/components/video-player/csr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/video-player/csr.tsx -------------------------------------------------------------------------------- /src/components/video-player/ssr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/components/video-player/ssr.tsx -------------------------------------------------------------------------------- /src/config/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/config/site.ts -------------------------------------------------------------------------------- /src/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/db/index.ts -------------------------------------------------------------------------------- /src/db/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/db/query.ts -------------------------------------------------------------------------------- /src/db/schema/_table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/db/schema/_table.ts -------------------------------------------------------------------------------- /src/db/schema/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/db/schema/auth.ts -------------------------------------------------------------------------------- /src/db/schema/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/db/schema/main.ts -------------------------------------------------------------------------------- /src/db/schema/relations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/db/schema/relations.ts -------------------------------------------------------------------------------- /src/env.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/env.mjs -------------------------------------------------------------------------------- /src/hooks/use-debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/hooks/use-debounce.ts -------------------------------------------------------------------------------- /src/hooks/use-local-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/hooks/use-local-storage.ts -------------------------------------------------------------------------------- /src/hooks/use-lock-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/hooks/use-lock-body.ts -------------------------------------------------------------------------------- /src/hooks/use-mounted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/hooks/use-mounted.ts -------------------------------------------------------------------------------- /src/lib/anilist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/lib/anilist.ts -------------------------------------------------------------------------------- /src/lib/consumet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/lib/consumet.ts -------------------------------------------------------------------------------- /src/lib/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/lib/fonts.ts -------------------------------------------------------------------------------- /src/lib/gql-queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/lib/gql-queries.ts -------------------------------------------------------------------------------- /src/lib/nextauth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/lib/nextauth/index.ts -------------------------------------------------------------------------------- /src/lib/nextauth/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/lib/nextauth/session.ts -------------------------------------------------------------------------------- /src/lib/tremor.ts: -------------------------------------------------------------------------------- 1 | "use client"; 2 | 3 | export * from "@tremor/react"; 4 | -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/types/anilist/activities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/types/anilist/activities.ts -------------------------------------------------------------------------------- /src/types/anilist/general-stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/types/anilist/general-stats.ts -------------------------------------------------------------------------------- /src/types/anilist/list-stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/types/anilist/list-stats.ts -------------------------------------------------------------------------------- /src/types/anilist/media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/types/anilist/media.ts -------------------------------------------------------------------------------- /src/types/anilist/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/types/anilist/notifications.ts -------------------------------------------------------------------------------- /src/types/consumet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/types/consumet/index.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/anirohi/HEAD/tsconfig.json --------------------------------------------------------------------------------