├── .env.example ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── biome.json ├── components.json ├── drizzle.config.ts ├── migrations ├── 0000_aspiring_pretty_boy.sql ├── 0001_glossy_kate_bishop.sql └── meta │ ├── 0000_snapshot.json │ ├── 0001_snapshot.json │ └── _journal.json ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png └── favicon-32x32.png ├── renovate.json ├── src ├── app │ ├── (auth) │ │ ├── actions.ts │ │ ├── layout.tsx │ │ ├── signin │ │ │ ├── page.tsx │ │ │ ├── password-input.tsx │ │ │ └── user-auth-form.tsx │ │ └── signout │ │ │ ├── buttons.tsx │ │ │ └── page.tsx │ ├── (marketing) │ │ └── page.tsx │ ├── (pages) │ │ ├── drama │ │ │ └── [slug] │ │ │ │ ├── client.tsx │ │ │ │ └── page.tsx │ │ ├── home │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── popular │ │ │ ├── actions.ts │ │ │ ├── client.tsx │ │ │ ├── error.tsx │ │ │ └── page.tsx │ │ ├── search │ │ │ └── page.tsx │ │ └── watch │ │ │ └── [slug] │ │ │ ├── loading.tsx │ │ │ ├── page.tsx │ │ │ └── update-progress.tsx │ ├── api │ │ ├── auth │ │ │ └── [...next-auth] │ │ │ │ └── route.ts │ │ ├── series │ │ │ └── sync │ │ │ │ └── route.ts │ │ └── user │ │ │ └── activity │ │ │ └── route.ts │ ├── favicon.ico │ ├── layout.tsx │ ├── manifest.ts │ ├── opengraph-image.png │ ├── robots.ts │ └── sitemap.ts ├── assets │ └── fonts │ │ └── CalSans-SemiBold.woff2 ├── components │ ├── analytics.tsx │ ├── buttons │ │ └── submit.tsx │ ├── card.tsx │ ├── fallbacks │ │ ├── card.tsx │ │ └── loading.tsx │ ├── icons.tsx │ ├── layout │ │ ├── main-nav.tsx │ │ ├── mobile-nav.tsx │ │ ├── site-footer.tsx │ │ ├── site-header.tsx │ │ └── theme-toggle.tsx │ ├── modified-image.tsx │ ├── react-player.tsx │ ├── tailwind-indicator.tsx │ ├── typography │ │ └── index.tsx │ └── ui │ │ ├── aspect-ratio.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── carousel.tsx │ │ ├── dropdown-menu.tsx │ │ ├── input.tsx │ │ ├── progress.tsx │ │ ├── scroll-area.tsx │ │ ├── separator.tsx │ │ ├── skeleton.tsx │ │ ├── sonner.tsx │ │ └── wavy-background.tsx ├── config │ └── site.ts ├── db │ ├── index.ts │ └── schema │ │ ├── _table.ts │ │ ├── auth.ts │ │ ├── index.ts │ │ ├── main.ts │ │ └── relations.ts ├── env.mjs ├── hooks │ ├── use-local-storage.ts │ └── use-lock-body.ts ├── lib │ ├── actions.ts │ ├── auth.ts │ ├── dramacool.ts │ ├── fonts.ts │ ├── helpers │ │ └── server.ts │ ├── utils.ts │ ├── validations.ts │ └── webhooks │ │ └── slack │ │ └── index.ts ├── styles │ └── globals.css └── types │ └── index.ts ├── tailwind.config.js ├── tsconfig.json ├── turbo.json └── vercel.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/biome.json -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/components.json -------------------------------------------------------------------------------- /drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/drizzle.config.ts -------------------------------------------------------------------------------- /migrations/0000_aspiring_pretty_boy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/migrations/0000_aspiring_pretty_boy.sql -------------------------------------------------------------------------------- /migrations/0001_glossy_kate_bishop.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/migrations/0001_glossy_kate_bishop.sql -------------------------------------------------------------------------------- /migrations/meta/0000_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/migrations/meta/0000_snapshot.json -------------------------------------------------------------------------------- /migrations/meta/0001_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/migrations/meta/0001_snapshot.json -------------------------------------------------------------------------------- /migrations/meta/_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/migrations/meta/_journal.json -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/renovate.json -------------------------------------------------------------------------------- /src/app/(auth)/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/(auth)/actions.ts -------------------------------------------------------------------------------- /src/app/(auth)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/(auth)/layout.tsx -------------------------------------------------------------------------------- /src/app/(auth)/signin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/(auth)/signin/page.tsx -------------------------------------------------------------------------------- /src/app/(auth)/signin/password-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/(auth)/signin/password-input.tsx -------------------------------------------------------------------------------- /src/app/(auth)/signin/user-auth-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/(auth)/signin/user-auth-form.tsx -------------------------------------------------------------------------------- /src/app/(auth)/signout/buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/(auth)/signout/buttons.tsx -------------------------------------------------------------------------------- /src/app/(auth)/signout/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/(auth)/signout/page.tsx -------------------------------------------------------------------------------- /src/app/(marketing)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/(marketing)/page.tsx -------------------------------------------------------------------------------- /src/app/(pages)/drama/[slug]/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/(pages)/drama/[slug]/client.tsx -------------------------------------------------------------------------------- /src/app/(pages)/drama/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/(pages)/drama/[slug]/page.tsx -------------------------------------------------------------------------------- /src/app/(pages)/home/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/(pages)/home/page.tsx -------------------------------------------------------------------------------- /src/app/(pages)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/(pages)/layout.tsx -------------------------------------------------------------------------------- /src/app/(pages)/popular/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/(pages)/popular/actions.ts -------------------------------------------------------------------------------- /src/app/(pages)/popular/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/(pages)/popular/client.tsx -------------------------------------------------------------------------------- /src/app/(pages)/popular/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/(pages)/popular/error.tsx -------------------------------------------------------------------------------- /src/app/(pages)/popular/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/(pages)/popular/page.tsx -------------------------------------------------------------------------------- /src/app/(pages)/search/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/(pages)/search/page.tsx -------------------------------------------------------------------------------- /src/app/(pages)/watch/[slug]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/(pages)/watch/[slug]/loading.tsx -------------------------------------------------------------------------------- /src/app/(pages)/watch/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/(pages)/watch/[slug]/page.tsx -------------------------------------------------------------------------------- /src/app/(pages)/watch/[slug]/update-progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/(pages)/watch/[slug]/update-progress.tsx -------------------------------------------------------------------------------- /src/app/api/auth/[...next-auth]/route.ts: -------------------------------------------------------------------------------- 1 | export { GET, POST } from "@/lib/auth"; 2 | -------------------------------------------------------------------------------- /src/app/api/series/sync/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/api/series/sync/route.ts -------------------------------------------------------------------------------- /src/app/api/user/activity/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/api/user/activity/route.ts -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/manifest.ts -------------------------------------------------------------------------------- /src/app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/opengraph-image.png -------------------------------------------------------------------------------- /src/app/robots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/robots.ts -------------------------------------------------------------------------------- /src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/app/sitemap.ts -------------------------------------------------------------------------------- /src/assets/fonts/CalSans-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/assets/fonts/CalSans-SemiBold.woff2 -------------------------------------------------------------------------------- /src/components/analytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/analytics.tsx -------------------------------------------------------------------------------- /src/components/buttons/submit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/buttons/submit.tsx -------------------------------------------------------------------------------- /src/components/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/card.tsx -------------------------------------------------------------------------------- /src/components/fallbacks/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/fallbacks/card.tsx -------------------------------------------------------------------------------- /src/components/fallbacks/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/fallbacks/loading.tsx -------------------------------------------------------------------------------- /src/components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/icons.tsx -------------------------------------------------------------------------------- /src/components/layout/main-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/layout/main-nav.tsx -------------------------------------------------------------------------------- /src/components/layout/mobile-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/layout/mobile-nav.tsx -------------------------------------------------------------------------------- /src/components/layout/site-footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/layout/site-footer.tsx -------------------------------------------------------------------------------- /src/components/layout/site-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/layout/site-header.tsx -------------------------------------------------------------------------------- /src/components/layout/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/layout/theme-toggle.tsx -------------------------------------------------------------------------------- /src/components/modified-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/modified-image.tsx -------------------------------------------------------------------------------- /src/components/react-player.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/react-player.tsx -------------------------------------------------------------------------------- /src/components/tailwind-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/tailwind-indicator.tsx -------------------------------------------------------------------------------- /src/components/typography/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/typography/index.tsx -------------------------------------------------------------------------------- /src/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/wavy-background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/components/ui/wavy-background.tsx -------------------------------------------------------------------------------- /src/config/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/config/site.ts -------------------------------------------------------------------------------- /src/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/db/index.ts -------------------------------------------------------------------------------- /src/db/schema/_table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/db/schema/_table.ts -------------------------------------------------------------------------------- /src/db/schema/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/db/schema/auth.ts -------------------------------------------------------------------------------- /src/db/schema/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/db/schema/index.ts -------------------------------------------------------------------------------- /src/db/schema/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/db/schema/main.ts -------------------------------------------------------------------------------- /src/db/schema/relations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/db/schema/relations.ts -------------------------------------------------------------------------------- /src/env.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/env.mjs -------------------------------------------------------------------------------- /src/hooks/use-local-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/hooks/use-local-storage.ts -------------------------------------------------------------------------------- /src/hooks/use-lock-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/hooks/use-lock-body.ts -------------------------------------------------------------------------------- /src/lib/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/lib/actions.ts -------------------------------------------------------------------------------- /src/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/lib/auth.ts -------------------------------------------------------------------------------- /src/lib/dramacool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/lib/dramacool.ts -------------------------------------------------------------------------------- /src/lib/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/lib/fonts.ts -------------------------------------------------------------------------------- /src/lib/helpers/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/lib/helpers/server.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/lib/validations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/lib/validations.ts -------------------------------------------------------------------------------- /src/lib/webhooks/slack/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/lib/webhooks/slack/index.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/turbo.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noelrohi/kd/HEAD/vercel.json --------------------------------------------------------------------------------