├── .env.example ├── .gitignore ├── README.md ├── app ├── (docs) │ ├── api │ │ └── search │ │ │ └── route.ts │ └── docs │ │ ├── [[...slug]] │ │ └── page.tsx │ │ ├── layout.config.tsx │ │ ├── layout.tsx │ │ └── mdx-components.tsx ├── (example) │ └── example │ │ ├── [name] │ │ └── route.ts │ │ ├── access │ │ └── [name] │ │ │ └── page.tsx │ │ └── api │ │ └── validate-license │ │ └── route.ts ├── (registry) │ └── registry │ │ ├── [name] │ │ └── route.ts │ │ ├── access │ │ └── validate-license │ │ │ └── page.tsx │ │ └── api │ │ └── validate-license │ │ └── route.ts ├── (www) │ └── page.tsx ├── favicon.ico ├── globals.css ├── icon.tsx └── layout.tsx ├── components.json ├── components ├── add-command.tsx ├── demo.tsx ├── logos.tsx ├── open-in-v0.tsx ├── providers.tsx ├── terminal-command-copy.tsx ├── ui │ ├── accordion.tsx │ ├── alert.tsx │ ├── avatar.tsx │ ├── badge.tsx │ ├── button.tsx │ ├── card.tsx │ ├── form.tsx │ ├── input.tsx │ ├── label.tsx │ ├── resizable.tsx │ ├── scroll-area.tsx │ ├── separator.tsx │ ├── sheet.tsx │ ├── sonner.tsx │ └── tabs.tsx └── validate-license-form.tsx ├── content └── docs │ ├── api │ ├── endpoints.mdx │ └── tokens-auth.mdx │ ├── configuration │ ├── env.mdx │ ├── middleware.mdx │ └── registry-json.mdx │ ├── contributing.mdx │ ├── examples │ └── showcase.mdx │ ├── faq.mdx │ ├── getting-started │ ├── installation.mdx │ ├── meta.json │ └── quickstart.mdx │ ├── guides │ ├── custom-components.mdx │ ├── deployment.mdx │ └── protecting-components.mdx │ ├── index.mdx │ ├── integrations │ ├── index.mdx │ ├── polar-sh.mdx │ └── shadcn.mdx │ ├── meta.json │ └── troubleshooting.mdx ├── eslint.config.mjs ├── hooks └── use-copy-to-clipboard.ts ├── lib ├── polar │ └── client.ts ├── shadcn │ └── registry │ │ └── utils.ts ├── source.ts └── utils.ts ├── middleware.ts ├── next.config.ts ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── postcss.config.mjs ├── public ├── file.svg ├── globe.svg ├── next.svg ├── og.png ├── r │ ├── branding.json │ ├── logo.json │ ├── registry-nextjs.json │ └── showcase.json ├── screenshot.png ├── vercel.svg └── window.svg ├── registry.json ├── registry └── new-york │ ├── branding │ └── zeta.tsx │ ├── examples │ └── showcase │ │ └── page.tsx │ ├── middleware.ts │ └── ui │ └── countdown.tsx ├── source.config.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/README.md -------------------------------------------------------------------------------- /app/(docs)/api/search/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/app/(docs)/api/search/route.ts -------------------------------------------------------------------------------- /app/(docs)/docs/[[...slug]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/app/(docs)/docs/[[...slug]]/page.tsx -------------------------------------------------------------------------------- /app/(docs)/docs/layout.config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/app/(docs)/docs/layout.config.tsx -------------------------------------------------------------------------------- /app/(docs)/docs/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/app/(docs)/docs/layout.tsx -------------------------------------------------------------------------------- /app/(docs)/docs/mdx-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/app/(docs)/docs/mdx-components.tsx -------------------------------------------------------------------------------- /app/(example)/example/[name]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/app/(example)/example/[name]/route.ts -------------------------------------------------------------------------------- /app/(example)/example/access/[name]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/app/(example)/example/access/[name]/page.tsx -------------------------------------------------------------------------------- /app/(example)/example/api/validate-license/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/app/(example)/example/api/validate-license/route.ts -------------------------------------------------------------------------------- /app/(registry)/registry/[name]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/app/(registry)/registry/[name]/route.ts -------------------------------------------------------------------------------- /app/(registry)/registry/access/validate-license/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/app/(registry)/registry/access/validate-license/page.tsx -------------------------------------------------------------------------------- /app/(registry)/registry/api/validate-license/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/app/(registry)/registry/api/validate-license/route.ts -------------------------------------------------------------------------------- /app/(www)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/app/(www)/page.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/app/icon.tsx -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/components.json -------------------------------------------------------------------------------- /components/add-command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/components/add-command.tsx -------------------------------------------------------------------------------- /components/demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/components/demo.tsx -------------------------------------------------------------------------------- /components/logos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/components/logos.tsx -------------------------------------------------------------------------------- /components/open-in-v0.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/components/open-in-v0.tsx -------------------------------------------------------------------------------- /components/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/components/providers.tsx -------------------------------------------------------------------------------- /components/terminal-command-copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/components/terminal-command-copy.tsx -------------------------------------------------------------------------------- /components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/components/ui/accordion.tsx -------------------------------------------------------------------------------- /components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/components/ui/alert.tsx -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/components/ui/form.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/components/ui/resizable.tsx -------------------------------------------------------------------------------- /components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/components/ui/sheet.tsx -------------------------------------------------------------------------------- /components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/components/ui/sonner.tsx -------------------------------------------------------------------------------- /components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/components/ui/tabs.tsx -------------------------------------------------------------------------------- /components/validate-license-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/components/validate-license-form.tsx -------------------------------------------------------------------------------- /content/docs/api/endpoints.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/content/docs/api/endpoints.mdx -------------------------------------------------------------------------------- /content/docs/api/tokens-auth.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/content/docs/api/tokens-auth.mdx -------------------------------------------------------------------------------- /content/docs/configuration/env.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/content/docs/configuration/env.mdx -------------------------------------------------------------------------------- /content/docs/configuration/middleware.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/content/docs/configuration/middleware.mdx -------------------------------------------------------------------------------- /content/docs/configuration/registry-json.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/content/docs/configuration/registry-json.mdx -------------------------------------------------------------------------------- /content/docs/contributing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/content/docs/contributing.mdx -------------------------------------------------------------------------------- /content/docs/examples/showcase.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/content/docs/examples/showcase.mdx -------------------------------------------------------------------------------- /content/docs/faq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/content/docs/faq.mdx -------------------------------------------------------------------------------- /content/docs/getting-started/installation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/content/docs/getting-started/installation.mdx -------------------------------------------------------------------------------- /content/docs/getting-started/meta.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/docs/getting-started/quickstart.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/content/docs/getting-started/quickstart.mdx -------------------------------------------------------------------------------- /content/docs/guides/custom-components.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/content/docs/guides/custom-components.mdx -------------------------------------------------------------------------------- /content/docs/guides/deployment.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/content/docs/guides/deployment.mdx -------------------------------------------------------------------------------- /content/docs/guides/protecting-components.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/content/docs/guides/protecting-components.mdx -------------------------------------------------------------------------------- /content/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/content/docs/index.mdx -------------------------------------------------------------------------------- /content/docs/integrations/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/content/docs/integrations/index.mdx -------------------------------------------------------------------------------- /content/docs/integrations/polar-sh.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/content/docs/integrations/polar-sh.mdx -------------------------------------------------------------------------------- /content/docs/integrations/shadcn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/content/docs/integrations/shadcn.mdx -------------------------------------------------------------------------------- /content/docs/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/content/docs/meta.json -------------------------------------------------------------------------------- /content/docs/troubleshooting.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/content/docs/troubleshooting.mdx -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /hooks/use-copy-to-clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/hooks/use-copy-to-clipboard.ts -------------------------------------------------------------------------------- /lib/polar/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/lib/polar/client.ts -------------------------------------------------------------------------------- /lib/shadcn/registry/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/lib/shadcn/registry/utils.ts -------------------------------------------------------------------------------- /lib/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/lib/source.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/public/file.svg -------------------------------------------------------------------------------- /public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/public/globe.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/public/og.png -------------------------------------------------------------------------------- /public/r/branding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/public/r/branding.json -------------------------------------------------------------------------------- /public/r/logo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/public/r/logo.json -------------------------------------------------------------------------------- /public/r/registry-nextjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/public/r/registry-nextjs.json -------------------------------------------------------------------------------- /public/r/showcase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/public/r/showcase.json -------------------------------------------------------------------------------- /public/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/public/screenshot.png -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/public/window.svg -------------------------------------------------------------------------------- /registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/registry.json -------------------------------------------------------------------------------- /registry/new-york/branding/zeta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/registry/new-york/branding/zeta.tsx -------------------------------------------------------------------------------- /registry/new-york/examples/showcase/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/registry/new-york/examples/showcase/page.tsx -------------------------------------------------------------------------------- /registry/new-york/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/registry/new-york/middleware.ts -------------------------------------------------------------------------------- /registry/new-york/ui/countdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/registry/new-york/ui/countdown.tsx -------------------------------------------------------------------------------- /source.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/source.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbadillap/zeta/HEAD/tsconfig.json --------------------------------------------------------------------------------