├── .cursor └── mcp.json ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml ├── scripts │ └── submit-sitemap.mjs └── workflows │ ├── code-check.yml │ └── submit-sitemap.yml ├── .gitignore ├── .prettierignore ├── .vscode └── settings.json ├── AGENTS.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── apps └── www │ ├── .env.example │ ├── .gitignore │ ├── .prettierignore │ ├── app │ ├── (blog) │ │ └── blog │ │ │ ├── [...slug] │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ ├── (docs) │ │ ├── docs │ │ │ ├── [[...slug]] │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── loading.tsx │ │ │ └── not-found.tsx │ │ └── layout.tsx │ ├── (marketing) │ │ ├── layout.tsx │ │ ├── page.tsx │ │ └── showcase │ │ │ ├── [...slug] │ │ │ └── page.tsx │ │ │ └── page.tsx │ ├── api │ │ ├── blog-webhook │ │ │ └── route.ts │ │ └── repo │ │ │ └── commits │ │ │ └── route.ts │ ├── apple-icon.png │ ├── favicon.ico │ ├── icon.png │ ├── icon.svg │ ├── layout.tsx │ ├── llm │ │ └── [[...slug]] │ │ │ └── route.ts │ ├── not-found.tsx │ ├── og │ │ ├── geist-regular-otf.json │ │ ├── geist-semibold-otf.json │ │ ├── geistmono-regular-otf.json │ │ └── route.tsx │ ├── robots.ts │ └── sitemap.ts │ ├── components.json │ ├── components │ ├── analytics.tsx │ ├── author.tsx │ ├── beta-button.tsx │ ├── blog │ │ └── table-of-contents.tsx │ ├── blur-image.tsx │ ├── callout.tsx │ ├── code-block-command.tsx │ ├── code-block-wrapper.tsx │ ├── code-collapsible-wrapper.tsx │ ├── code-tabs.tsx │ ├── command-menu.tsx │ ├── commit-list.tsx │ ├── component-preview-tabs.tsx │ ├── component-preview.tsx │ ├── component-source.tsx │ ├── components-list.tsx │ ├── contribute.tsx │ ├── copy-button.tsx │ ├── deal-banner.tsx │ ├── discord-link.tsx │ ├── docs-copy-page.tsx │ ├── docs-sidebar.tsx │ ├── docs-toc.tsx │ ├── github-link.tsx │ ├── gradient-blur.tsx │ ├── icons.tsx │ ├── logo-button.tsx │ ├── logo.tsx │ ├── main-nav.tsx │ ├── mobile-nav.tsx │ ├── mode-toggle.tsx │ ├── og-logo.tsx │ ├── open-in-v0-button.tsx │ ├── ping-dot.tsx │ ├── posthog-provider.tsx │ ├── sections │ │ ├── component-demos.tsx │ │ ├── cta.tsx │ │ ├── expandable-masonary-section.tsx │ │ ├── hero-animated-slides.tsx │ │ ├── hero.tsx │ │ ├── showcase.tsx │ │ ├── testimonials.tsx │ │ └── video-testimonials.tsx │ ├── sidebar-cta.tsx │ ├── site-banner.tsx │ ├── site-footer.tsx │ ├── site-header.tsx │ ├── tech-stack.tsx │ ├── template-open.tsx │ ├── template-preview.tsx │ ├── theme-provider.tsx │ ├── ui │ │ ├── accordion.tsx │ │ ├── alert.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── collapsible.tsx │ │ ├── command.tsx │ │ ├── context-menu.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── popover.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── sidebar.tsx │ │ ├── skeleton.tsx │ │ ├── sonner.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ └── tooltip.tsx │ └── version-select.tsx │ ├── config │ ├── docs.ts │ └── site.ts │ ├── content │ └── docs │ │ ├── changelog.mdx │ │ ├── components │ │ ├── animated-badge.mdx │ │ ├── animated-frameworks.mdx │ │ ├── animated-list.mdx │ │ ├── animated-shiny-button.mdx │ │ ├── blur-in-text.mdx │ │ ├── browser.mdx │ │ ├── card-flip-hover.mdx │ │ ├── clerk-otp.mdx │ │ ├── cobe-globe.mdx │ │ ├── dock-text.mdx │ │ ├── fade-text.mdx │ │ ├── font-weight-text.mdx │ │ ├── github-inline-comments.mdx │ │ ├── gradual-spacing-text.mdx │ │ ├── grid.mdx │ │ ├── hacker-background.mdx │ │ ├── index.mdx │ │ ├── integrations.mdx │ │ ├── ipad.mdx │ │ ├── iphone-17-pro.mdx │ │ ├── letter-pull-up-text.mdx │ │ ├── live-button.mdx │ │ ├── logo-timeline.mdx │ │ ├── macbook-pro.mdx │ │ ├── map.mdx │ │ ├── multi-direction-slide-text.mdx │ │ ├── novatrix-background.mdx │ │ ├── orbit-rotation.mdx │ │ ├── safari-browser.mdx │ │ ├── scale-letter-text.mdx │ │ ├── seperate-away-text.mdx │ │ ├── svg-ripple-effect.mdx │ │ ├── terminal.mdx │ │ ├── testimonal-slider.mdx │ │ ├── wavy-text.mdx │ │ └── word-pull-up-text.mdx │ │ ├── home.mdx │ │ ├── index.mdx │ │ ├── installation │ │ └── index.mdx │ │ ├── legacy.mdx │ │ ├── mcp.mdx │ │ ├── privacy-policy.mdx │ │ ├── story.mdx │ │ ├── templates │ │ └── portfolio.mdx │ │ └── terms-and-conditions.mdx │ ├── eslint.config.mjs │ ├── hooks │ ├── use-config.ts │ ├── use-copy-to-clipboard.ts │ ├── use-is-mac.ts │ ├── use-meta-color.ts │ ├── use-mobile.ts │ ├── use-mounted.ts │ └── use-mutation-observer.ts │ ├── lib │ ├── docs.ts │ ├── events.ts │ ├── fonts.ts │ ├── github.ts │ ├── highlight-code.ts │ ├── registry.ts │ ├── rehype-component.ts │ ├── rehype-npm-command.ts │ ├── source.ts │ ├── types.ts │ └── utils.ts │ ├── mdx-components.tsx │ ├── middleware.ts │ ├── next.config.mjs │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── dev.mp4 │ ├── llms-full.txt │ ├── llms.txt │ ├── mcp.json │ ├── placeholder-dark.svg │ ├── placeholder.svg │ ├── portfolio.mp4 │ ├── r │ │ ├── animated-badge-demo.json │ │ ├── animated-badge.json │ │ ├── animated-frameworks-demo.json │ │ ├── animated-frameworks.json │ │ ├── animated-grid-pattern-demo.json │ │ ├── animated-grid-pattern.json │ │ ├── animated-list-demo.json │ │ ├── animated-list.json │ │ ├── animated-shiny-button-demo.json │ │ ├── animated-shiny-button.json │ │ ├── architecture-animation-demo.json │ │ ├── architecture-animation.json │ │ ├── blur-in-text-demo.json │ │ ├── blur-in-text.json │ │ ├── browser-demo-2.json │ │ ├── browser-demo.json │ │ ├── browser.json │ │ ├── card-flip-hover-demo.json │ │ ├── card-flip-hover.json │ │ ├── clerk-otp-demo-2.json │ │ ├── clerk-otp-demo.json │ │ ├── clerk-otp.json │ │ ├── cobe-globe-demo-2.json │ │ ├── cobe-globe-demo-3.json │ │ ├── cobe-globe-demo-4.json │ │ ├── cobe-globe-demo-5.json │ │ ├── cobe-globe-demo.json │ │ ├── cobe-globe.json │ │ ├── dock-text-demo-2.json │ │ ├── dock-text-demo.json │ │ ├── dock-text.json │ │ ├── fade-down-text-demo.json │ │ ├── fade-down-text.json │ │ ├── fade-in-text-demo.json │ │ ├── fade-in-text.json │ │ ├── fade-text-demo-2.json │ │ ├── fade-text-demo-3.json │ │ ├── fade-text-demo.json │ │ ├── fade-text.json │ │ ├── fade-up-text-demo.json │ │ ├── fade-up-text.json │ │ ├── font-weight-text-demo.json │ │ ├── font-weight-text.json │ │ ├── github-inline-comments-demo.json │ │ ├── github-inline-comments.json │ │ ├── gradient-tracing-demo.json │ │ ├── gradient-tracing.json │ │ ├── gradual-spacing-text-demo.json │ │ ├── gradual-spacing-text.json │ │ ├── grid-demo-2.json │ │ ├── grid-demo-3.json │ │ ├── grid-demo-4.json │ │ ├── grid-demo-5.json │ │ ├── grid-demo.json │ │ ├── grid.json │ │ ├── hacker-background-demo-2.json │ │ ├── hacker-background-demo.json │ │ ├── hacker-background.json │ │ ├── index.json │ │ ├── integrations-demo-2.json │ │ ├── integrations-demo.json │ │ ├── integrations.json │ │ ├── ipad-demo.json │ │ ├── ipad.json │ │ ├── iphone-17-pro-demo.json │ │ ├── iphone-17-pro.json │ │ ├── letter-pull-up-text-demo.json │ │ ├── letter-pull-up-text.json │ │ ├── live-button-demo.json │ │ ├── live-button.json │ │ ├── logo-timeline-demo-2.json │ │ ├── logo-timeline-demo.json │ │ ├── logo-timeline.json │ │ ├── macbook-pro-demo.json │ │ ├── macbook-pro.json │ │ ├── map-demo.json │ │ ├── map.json │ │ ├── marquee.json │ │ ├── multi-direction-slide-text-demo.json │ │ ├── multi-direction-slide-text.json │ │ ├── novatrix-background-demo-2.json │ │ ├── novatrix-background-demo.json │ │ ├── novatrix-background.json │ │ ├── orbit-rotation-demo.json │ │ ├── orbit-rotation.json │ │ ├── registry.json │ │ ├── safari-browser-demo.json │ │ ├── safari-browser.json │ │ ├── scale-letter-text-demo.json │ │ ├── scale-letter-text.json │ │ ├── seperate-away-text-demo.json │ │ ├── seperate-away-text.json │ │ ├── svg-ripple-effect-demo-2.json │ │ ├── svg-ripple-effect-demo.json │ │ ├── svg-ripple-effect.json │ │ ├── terminal-demo.json │ │ ├── terminal.json │ │ ├── testimonal-slider-demo.json │ │ ├── testimonal-slider.json │ │ ├── text-shimmer.json │ │ ├── utils.json │ │ ├── wavy-text-demo.json │ │ ├── wavy-text.json │ │ ├── word-pull-up-text-demo.json │ │ └── word-pull-up-text.json │ ├── registry.json │ └── site.webmanifest │ ├── registry.json │ ├── registry │ ├── __index__.tsx │ ├── eldoraui │ │ ├── animated-badge.tsx │ │ ├── animated-frameworks.tsx │ │ ├── animated-grid-pattern.tsx │ │ ├── animated-list.tsx │ │ ├── animated-shiny-button.tsx │ │ ├── animated-shiny-text.tsx │ │ ├── aurora-text.tsx │ │ ├── blur-fade.tsx │ │ ├── blur-in-text.tsx │ │ ├── browser.tsx │ │ ├── card-flip-hover.tsx │ │ ├── clerk-otp.tsx │ │ ├── cobe-globe.tsx │ │ ├── dock-text.tsx │ │ ├── fade-text.tsx │ │ ├── font-weight-text.tsx │ │ ├── github-inline-comments.tsx │ │ ├── gradual-spacing-text.tsx │ │ ├── grid.tsx │ │ ├── hacker-background.tsx │ │ ├── integrations.tsx │ │ ├── ipad.tsx │ │ ├── iphone-17-pro.tsx │ │ ├── letter-pull-up-text.tsx │ │ ├── line-shadow-text.tsx │ │ ├── live-button.tsx │ │ ├── logo-timeline.tsx │ │ ├── macbook-pro.tsx │ │ ├── map.tsx │ │ ├── marquee.tsx │ │ ├── multi-direction-slide-text.tsx │ │ ├── novatrix-background.tsx │ │ ├── orbit-rotation.tsx │ │ ├── safari-browser.tsx │ │ ├── scale-letter-text.tsx │ │ ├── seperate-away-text.tsx │ │ ├── svg-ripple-effect.tsx │ │ ├── terminal.tsx │ │ ├── testimonal-slider.tsx │ │ ├── text-animate.tsx │ │ ├── text-shimmer.tsx │ │ ├── tweet-card.tsx │ │ ├── wavy-text.tsx │ │ └── word-pull-up-text.tsx │ ├── example │ │ ├── animated-badge-demo.tsx │ │ ├── animated-frameworks-demo.tsx │ │ ├── animated-grid-pattern-demo.tsx │ │ ├── animated-list-demo.tsx │ │ ├── animated-shiny-button-demo.tsx │ │ ├── blur-in-text-demo.tsx │ │ ├── browser-demo-2.tsx │ │ ├── browser-demo.tsx │ │ ├── card-flip-hover-demo.tsx │ │ ├── clerk-otp-demo-2.tsx │ │ ├── clerk-otp-demo.tsx │ │ ├── cobe-globe-demo-2.tsx │ │ ├── cobe-globe-demo-3.tsx │ │ ├── cobe-globe-demo-4.tsx │ │ ├── cobe-globe-demo-5.tsx │ │ ├── cobe-globe-demo.tsx │ │ ├── dock-text-demo-2.tsx │ │ ├── dock-text-demo.tsx │ │ ├── fade-text-demo-2.tsx │ │ ├── fade-text-demo-3.tsx │ │ ├── fade-text-demo.tsx │ │ ├── font-weight-text-demo.tsx │ │ ├── github-inline-comments-demo.tsx │ │ ├── gradual-spacing-text-demo.tsx │ │ ├── grid-demo-2.tsx │ │ ├── grid-demo-3.tsx │ │ ├── grid-demo-4.tsx │ │ ├── grid-demo-5.tsx │ │ ├── grid-demo.tsx │ │ ├── hacker-background-demo-2.tsx │ │ ├── hacker-background-demo.tsx │ │ ├── integrations-demo-2.tsx │ │ ├── integrations-demo.tsx │ │ ├── ipad-demo.tsx │ │ ├── iphone-17-pro-demo.tsx │ │ ├── letter-pull-up-text-demo.tsx │ │ ├── live-button-demo.tsx │ │ ├── logo-timeline-demo-2.tsx │ │ ├── logo-timeline-demo.tsx │ │ ├── macbook-pro-demo.tsx │ │ ├── map-demo.tsx │ │ ├── multi-direction-slide-text-demo.tsx │ │ ├── novatrix-background-demo-2.tsx │ │ ├── novatrix-background-demo.tsx │ │ ├── orbit-rotation-demo.tsx │ │ ├── safari-browser-demo.tsx │ │ ├── scale-letter-text-demo.tsx │ │ ├── seperate-away-text-demo.tsx │ │ ├── svg-ripple-effect-demo-2.tsx │ │ ├── svg-ripple-effect-demo.tsx │ │ ├── terminal-demo.tsx │ │ ├── testimonal-slider-demo.tsx │ │ ├── wavy-text-demo.tsx │ │ └── word-pull-up-text-demo.tsx │ ├── index.ts │ ├── lib │ │ └── utils.ts │ ├── registry-examples.ts │ ├── registry-lib.ts │ └── registry-ui.ts │ ├── scripts │ └── build-registry.mts │ ├── source.config.ts │ ├── styles │ └── globals.css │ ├── tsconfig.json │ ├── tsconfig.scripts.json │ └── types │ ├── index.d.ts │ └── unist.ts ├── lefthook.yml ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── registry.json └── turbo.json /.cursor/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/.cursor/mcp.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/scripts/submit-sitemap.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/.github/scripts/submit-sitemap.mjs -------------------------------------------------------------------------------- /.github/workflows/code-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/.github/workflows/code-check.yml -------------------------------------------------------------------------------- /.github/workflows/submit-sitemap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/.github/workflows/submit-sitemap.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | yarn.lock 2 | node_modules 3 | .next 4 | .source 5 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/README.md -------------------------------------------------------------------------------- /apps/www/.env.example: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_APP_URL=http://localhost:3000 2 | -------------------------------------------------------------------------------- /apps/www/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/.gitignore -------------------------------------------------------------------------------- /apps/www/.prettierignore: -------------------------------------------------------------------------------- 1 | registry/__index__.tsx 2 | -------------------------------------------------------------------------------- /apps/www/app/(blog)/blog/[...slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/app/(blog)/blog/[...slug]/page.tsx -------------------------------------------------------------------------------- /apps/www/app/(blog)/blog/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/app/(blog)/blog/layout.tsx -------------------------------------------------------------------------------- /apps/www/app/(blog)/blog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/app/(blog)/blog/page.tsx -------------------------------------------------------------------------------- /apps/www/app/(docs)/docs/[[...slug]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/app/(docs)/docs/[[...slug]]/page.tsx -------------------------------------------------------------------------------- /apps/www/app/(docs)/docs/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/app/(docs)/docs/layout.tsx -------------------------------------------------------------------------------- /apps/www/app/(docs)/docs/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/app/(docs)/docs/loading.tsx -------------------------------------------------------------------------------- /apps/www/app/(docs)/docs/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/app/(docs)/docs/not-found.tsx -------------------------------------------------------------------------------- /apps/www/app/(docs)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/app/(docs)/layout.tsx -------------------------------------------------------------------------------- /apps/www/app/(marketing)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/app/(marketing)/layout.tsx -------------------------------------------------------------------------------- /apps/www/app/(marketing)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/app/(marketing)/page.tsx -------------------------------------------------------------------------------- /apps/www/app/(marketing)/showcase/[...slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/app/(marketing)/showcase/[...slug]/page.tsx -------------------------------------------------------------------------------- /apps/www/app/(marketing)/showcase/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/app/(marketing)/showcase/page.tsx -------------------------------------------------------------------------------- /apps/www/app/api/blog-webhook/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/app/api/blog-webhook/route.ts -------------------------------------------------------------------------------- /apps/www/app/api/repo/commits/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/app/api/repo/commits/route.ts -------------------------------------------------------------------------------- /apps/www/app/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/app/apple-icon.png -------------------------------------------------------------------------------- /apps/www/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/app/favicon.ico -------------------------------------------------------------------------------- /apps/www/app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/app/icon.png -------------------------------------------------------------------------------- /apps/www/app/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/app/icon.svg -------------------------------------------------------------------------------- /apps/www/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/app/layout.tsx -------------------------------------------------------------------------------- /apps/www/app/llm/[[...slug]]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/app/llm/[[...slug]]/route.ts -------------------------------------------------------------------------------- /apps/www/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/app/not-found.tsx -------------------------------------------------------------------------------- /apps/www/app/og/geist-regular-otf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/app/og/geist-regular-otf.json -------------------------------------------------------------------------------- /apps/www/app/og/geist-semibold-otf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/app/og/geist-semibold-otf.json -------------------------------------------------------------------------------- /apps/www/app/og/geistmono-regular-otf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/app/og/geistmono-regular-otf.json -------------------------------------------------------------------------------- /apps/www/app/og/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/app/og/route.tsx -------------------------------------------------------------------------------- /apps/www/app/robots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/app/robots.ts -------------------------------------------------------------------------------- /apps/www/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/app/sitemap.ts -------------------------------------------------------------------------------- /apps/www/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components.json -------------------------------------------------------------------------------- /apps/www/components/analytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/analytics.tsx -------------------------------------------------------------------------------- /apps/www/components/author.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/author.tsx -------------------------------------------------------------------------------- /apps/www/components/beta-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/beta-button.tsx -------------------------------------------------------------------------------- /apps/www/components/blog/table-of-contents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/blog/table-of-contents.tsx -------------------------------------------------------------------------------- /apps/www/components/blur-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/blur-image.tsx -------------------------------------------------------------------------------- /apps/www/components/callout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/callout.tsx -------------------------------------------------------------------------------- /apps/www/components/code-block-command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/code-block-command.tsx -------------------------------------------------------------------------------- /apps/www/components/code-block-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/code-block-wrapper.tsx -------------------------------------------------------------------------------- /apps/www/components/code-collapsible-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/code-collapsible-wrapper.tsx -------------------------------------------------------------------------------- /apps/www/components/code-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/code-tabs.tsx -------------------------------------------------------------------------------- /apps/www/components/command-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/command-menu.tsx -------------------------------------------------------------------------------- /apps/www/components/commit-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/commit-list.tsx -------------------------------------------------------------------------------- /apps/www/components/component-preview-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/component-preview-tabs.tsx -------------------------------------------------------------------------------- /apps/www/components/component-preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/component-preview.tsx -------------------------------------------------------------------------------- /apps/www/components/component-source.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/component-source.tsx -------------------------------------------------------------------------------- /apps/www/components/components-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/components-list.tsx -------------------------------------------------------------------------------- /apps/www/components/contribute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/contribute.tsx -------------------------------------------------------------------------------- /apps/www/components/copy-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/copy-button.tsx -------------------------------------------------------------------------------- /apps/www/components/deal-banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/deal-banner.tsx -------------------------------------------------------------------------------- /apps/www/components/discord-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/discord-link.tsx -------------------------------------------------------------------------------- /apps/www/components/docs-copy-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/docs-copy-page.tsx -------------------------------------------------------------------------------- /apps/www/components/docs-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/docs-sidebar.tsx -------------------------------------------------------------------------------- /apps/www/components/docs-toc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/docs-toc.tsx -------------------------------------------------------------------------------- /apps/www/components/github-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/github-link.tsx -------------------------------------------------------------------------------- /apps/www/components/gradient-blur.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/gradient-blur.tsx -------------------------------------------------------------------------------- /apps/www/components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/icons.tsx -------------------------------------------------------------------------------- /apps/www/components/logo-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/logo-button.tsx -------------------------------------------------------------------------------- /apps/www/components/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/logo.tsx -------------------------------------------------------------------------------- /apps/www/components/main-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/main-nav.tsx -------------------------------------------------------------------------------- /apps/www/components/mobile-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/mobile-nav.tsx -------------------------------------------------------------------------------- /apps/www/components/mode-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/mode-toggle.tsx -------------------------------------------------------------------------------- /apps/www/components/og-logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/og-logo.tsx -------------------------------------------------------------------------------- /apps/www/components/open-in-v0-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/open-in-v0-button.tsx -------------------------------------------------------------------------------- /apps/www/components/ping-dot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ping-dot.tsx -------------------------------------------------------------------------------- /apps/www/components/posthog-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/posthog-provider.tsx -------------------------------------------------------------------------------- /apps/www/components/sections/component-demos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/sections/component-demos.tsx -------------------------------------------------------------------------------- /apps/www/components/sections/cta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/sections/cta.tsx -------------------------------------------------------------------------------- /apps/www/components/sections/expandable-masonary-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/sections/expandable-masonary-section.tsx -------------------------------------------------------------------------------- /apps/www/components/sections/hero-animated-slides.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/sections/hero-animated-slides.tsx -------------------------------------------------------------------------------- /apps/www/components/sections/hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/sections/hero.tsx -------------------------------------------------------------------------------- /apps/www/components/sections/showcase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/sections/showcase.tsx -------------------------------------------------------------------------------- /apps/www/components/sections/testimonials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/sections/testimonials.tsx -------------------------------------------------------------------------------- /apps/www/components/sections/video-testimonials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/sections/video-testimonials.tsx -------------------------------------------------------------------------------- /apps/www/components/sidebar-cta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/sidebar-cta.tsx -------------------------------------------------------------------------------- /apps/www/components/site-banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/site-banner.tsx -------------------------------------------------------------------------------- /apps/www/components/site-footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/site-footer.tsx -------------------------------------------------------------------------------- /apps/www/components/site-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/site-header.tsx -------------------------------------------------------------------------------- /apps/www/components/tech-stack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/tech-stack.tsx -------------------------------------------------------------------------------- /apps/www/components/template-open.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/template-open.tsx -------------------------------------------------------------------------------- /apps/www/components/template-preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/template-preview.tsx -------------------------------------------------------------------------------- /apps/www/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/theme-provider.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/accordion.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/alert.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/avatar.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/badge.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/button.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/calendar.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/card.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/command.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/dialog.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/form.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/input.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/label.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/popover.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/select.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/separator.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/sheet.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/sonner.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/switch.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/table.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/tabs.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/textarea.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /apps/www/components/version-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/components/version-select.tsx -------------------------------------------------------------------------------- /apps/www/config/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/config/docs.ts -------------------------------------------------------------------------------- /apps/www/config/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/config/site.ts -------------------------------------------------------------------------------- /apps/www/content/docs/changelog.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/changelog.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/animated-badge.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/animated-badge.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/animated-frameworks.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/animated-frameworks.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/animated-list.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/animated-list.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/animated-shiny-button.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/animated-shiny-button.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/blur-in-text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/blur-in-text.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/browser.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/browser.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/card-flip-hover.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/card-flip-hover.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/clerk-otp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/clerk-otp.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/cobe-globe.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/cobe-globe.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/dock-text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/dock-text.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/fade-text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/fade-text.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/font-weight-text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/font-weight-text.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/github-inline-comments.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/github-inline-comments.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/gradual-spacing-text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/gradual-spacing-text.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/grid.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/grid.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/hacker-background.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/hacker-background.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/index.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/integrations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/integrations.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/ipad.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/ipad.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/iphone-17-pro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/iphone-17-pro.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/letter-pull-up-text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/letter-pull-up-text.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/live-button.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/live-button.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/logo-timeline.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/logo-timeline.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/macbook-pro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/macbook-pro.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/map.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/map.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/multi-direction-slide-text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/multi-direction-slide-text.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/novatrix-background.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/novatrix-background.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/orbit-rotation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/orbit-rotation.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/safari-browser.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/safari-browser.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/scale-letter-text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/scale-letter-text.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/seperate-away-text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/seperate-away-text.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/svg-ripple-effect.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/svg-ripple-effect.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/terminal.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/terminal.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/testimonal-slider.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/testimonal-slider.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/wavy-text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/wavy-text.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/components/word-pull-up-text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/components/word-pull-up-text.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/home.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/home.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/index.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/installation/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/installation/index.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/legacy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/legacy.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/mcp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/mcp.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/privacy-policy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/privacy-policy.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/story.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/story.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/templates/portfolio.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/templates/portfolio.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/terms-and-conditions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/content/docs/terms-and-conditions.mdx -------------------------------------------------------------------------------- /apps/www/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/eslint.config.mjs -------------------------------------------------------------------------------- /apps/www/hooks/use-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/hooks/use-config.ts -------------------------------------------------------------------------------- /apps/www/hooks/use-copy-to-clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/hooks/use-copy-to-clipboard.ts -------------------------------------------------------------------------------- /apps/www/hooks/use-is-mac.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/hooks/use-is-mac.ts -------------------------------------------------------------------------------- /apps/www/hooks/use-meta-color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/hooks/use-meta-color.ts -------------------------------------------------------------------------------- /apps/www/hooks/use-mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/hooks/use-mobile.ts -------------------------------------------------------------------------------- /apps/www/hooks/use-mounted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/hooks/use-mounted.ts -------------------------------------------------------------------------------- /apps/www/hooks/use-mutation-observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/hooks/use-mutation-observer.ts -------------------------------------------------------------------------------- /apps/www/lib/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/lib/docs.ts -------------------------------------------------------------------------------- /apps/www/lib/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/lib/events.ts -------------------------------------------------------------------------------- /apps/www/lib/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/lib/fonts.ts -------------------------------------------------------------------------------- /apps/www/lib/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/lib/github.ts -------------------------------------------------------------------------------- /apps/www/lib/highlight-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/lib/highlight-code.ts -------------------------------------------------------------------------------- /apps/www/lib/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/lib/registry.ts -------------------------------------------------------------------------------- /apps/www/lib/rehype-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/lib/rehype-component.ts -------------------------------------------------------------------------------- /apps/www/lib/rehype-npm-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/lib/rehype-npm-command.ts -------------------------------------------------------------------------------- /apps/www/lib/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/lib/source.ts -------------------------------------------------------------------------------- /apps/www/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/lib/types.ts -------------------------------------------------------------------------------- /apps/www/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/lib/utils.ts -------------------------------------------------------------------------------- /apps/www/mdx-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/mdx-components.tsx -------------------------------------------------------------------------------- /apps/www/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/middleware.ts -------------------------------------------------------------------------------- /apps/www/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/next.config.mjs -------------------------------------------------------------------------------- /apps/www/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/package.json -------------------------------------------------------------------------------- /apps/www/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/postcss.config.mjs -------------------------------------------------------------------------------- /apps/www/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /apps/www/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /apps/www/public/dev.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/dev.mp4 -------------------------------------------------------------------------------- /apps/www/public/llms-full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/llms-full.txt -------------------------------------------------------------------------------- /apps/www/public/llms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/llms.txt -------------------------------------------------------------------------------- /apps/www/public/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/mcp.json -------------------------------------------------------------------------------- /apps/www/public/placeholder-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/placeholder-dark.svg -------------------------------------------------------------------------------- /apps/www/public/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/placeholder.svg -------------------------------------------------------------------------------- /apps/www/public/portfolio.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/portfolio.mp4 -------------------------------------------------------------------------------- /apps/www/public/r/animated-badge-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/animated-badge-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/animated-badge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/animated-badge.json -------------------------------------------------------------------------------- /apps/www/public/r/animated-frameworks-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/animated-frameworks-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/animated-frameworks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/animated-frameworks.json -------------------------------------------------------------------------------- /apps/www/public/r/animated-grid-pattern-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/animated-grid-pattern-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/animated-grid-pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/animated-grid-pattern.json -------------------------------------------------------------------------------- /apps/www/public/r/animated-list-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/animated-list-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/animated-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/animated-list.json -------------------------------------------------------------------------------- /apps/www/public/r/animated-shiny-button-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/animated-shiny-button-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/animated-shiny-button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/animated-shiny-button.json -------------------------------------------------------------------------------- /apps/www/public/r/architecture-animation-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/architecture-animation-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/architecture-animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/architecture-animation.json -------------------------------------------------------------------------------- /apps/www/public/r/blur-in-text-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/blur-in-text-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/blur-in-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/blur-in-text.json -------------------------------------------------------------------------------- /apps/www/public/r/browser-demo-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/browser-demo-2.json -------------------------------------------------------------------------------- /apps/www/public/r/browser-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/browser-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/browser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/browser.json -------------------------------------------------------------------------------- /apps/www/public/r/card-flip-hover-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/card-flip-hover-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/card-flip-hover.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/card-flip-hover.json -------------------------------------------------------------------------------- /apps/www/public/r/clerk-otp-demo-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/clerk-otp-demo-2.json -------------------------------------------------------------------------------- /apps/www/public/r/clerk-otp-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/clerk-otp-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/clerk-otp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/clerk-otp.json -------------------------------------------------------------------------------- /apps/www/public/r/cobe-globe-demo-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/cobe-globe-demo-2.json -------------------------------------------------------------------------------- /apps/www/public/r/cobe-globe-demo-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/cobe-globe-demo-3.json -------------------------------------------------------------------------------- /apps/www/public/r/cobe-globe-demo-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/cobe-globe-demo-4.json -------------------------------------------------------------------------------- /apps/www/public/r/cobe-globe-demo-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/cobe-globe-demo-5.json -------------------------------------------------------------------------------- /apps/www/public/r/cobe-globe-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/cobe-globe-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/cobe-globe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/cobe-globe.json -------------------------------------------------------------------------------- /apps/www/public/r/dock-text-demo-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/dock-text-demo-2.json -------------------------------------------------------------------------------- /apps/www/public/r/dock-text-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/dock-text-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/dock-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/dock-text.json -------------------------------------------------------------------------------- /apps/www/public/r/fade-down-text-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/fade-down-text-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/fade-down-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/fade-down-text.json -------------------------------------------------------------------------------- /apps/www/public/r/fade-in-text-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/fade-in-text-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/fade-in-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/fade-in-text.json -------------------------------------------------------------------------------- /apps/www/public/r/fade-text-demo-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/fade-text-demo-2.json -------------------------------------------------------------------------------- /apps/www/public/r/fade-text-demo-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/fade-text-demo-3.json -------------------------------------------------------------------------------- /apps/www/public/r/fade-text-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/fade-text-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/fade-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/fade-text.json -------------------------------------------------------------------------------- /apps/www/public/r/fade-up-text-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/fade-up-text-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/fade-up-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/fade-up-text.json -------------------------------------------------------------------------------- /apps/www/public/r/font-weight-text-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/font-weight-text-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/font-weight-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/font-weight-text.json -------------------------------------------------------------------------------- /apps/www/public/r/github-inline-comments-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/github-inline-comments-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/github-inline-comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/github-inline-comments.json -------------------------------------------------------------------------------- /apps/www/public/r/gradient-tracing-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/gradient-tracing-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/gradient-tracing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/gradient-tracing.json -------------------------------------------------------------------------------- /apps/www/public/r/gradual-spacing-text-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/gradual-spacing-text-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/gradual-spacing-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/gradual-spacing-text.json -------------------------------------------------------------------------------- /apps/www/public/r/grid-demo-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/grid-demo-2.json -------------------------------------------------------------------------------- /apps/www/public/r/grid-demo-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/grid-demo-3.json -------------------------------------------------------------------------------- /apps/www/public/r/grid-demo-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/grid-demo-4.json -------------------------------------------------------------------------------- /apps/www/public/r/grid-demo-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/grid-demo-5.json -------------------------------------------------------------------------------- /apps/www/public/r/grid-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/grid-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/grid.json -------------------------------------------------------------------------------- /apps/www/public/r/hacker-background-demo-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/hacker-background-demo-2.json -------------------------------------------------------------------------------- /apps/www/public/r/hacker-background-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/hacker-background-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/hacker-background.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/hacker-background.json -------------------------------------------------------------------------------- /apps/www/public/r/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/index.json -------------------------------------------------------------------------------- /apps/www/public/r/integrations-demo-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/integrations-demo-2.json -------------------------------------------------------------------------------- /apps/www/public/r/integrations-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/integrations-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/integrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/integrations.json -------------------------------------------------------------------------------- /apps/www/public/r/ipad-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/ipad-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/ipad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/ipad.json -------------------------------------------------------------------------------- /apps/www/public/r/iphone-17-pro-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/iphone-17-pro-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/iphone-17-pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/iphone-17-pro.json -------------------------------------------------------------------------------- /apps/www/public/r/letter-pull-up-text-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/letter-pull-up-text-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/letter-pull-up-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/letter-pull-up-text.json -------------------------------------------------------------------------------- /apps/www/public/r/live-button-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/live-button-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/live-button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/live-button.json -------------------------------------------------------------------------------- /apps/www/public/r/logo-timeline-demo-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/logo-timeline-demo-2.json -------------------------------------------------------------------------------- /apps/www/public/r/logo-timeline-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/logo-timeline-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/logo-timeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/logo-timeline.json -------------------------------------------------------------------------------- /apps/www/public/r/macbook-pro-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/macbook-pro-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/macbook-pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/macbook-pro.json -------------------------------------------------------------------------------- /apps/www/public/r/map-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/map-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/map.json -------------------------------------------------------------------------------- /apps/www/public/r/marquee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/marquee.json -------------------------------------------------------------------------------- /apps/www/public/r/multi-direction-slide-text-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/multi-direction-slide-text-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/multi-direction-slide-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/multi-direction-slide-text.json -------------------------------------------------------------------------------- /apps/www/public/r/novatrix-background-demo-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/novatrix-background-demo-2.json -------------------------------------------------------------------------------- /apps/www/public/r/novatrix-background-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/novatrix-background-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/novatrix-background.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/novatrix-background.json -------------------------------------------------------------------------------- /apps/www/public/r/orbit-rotation-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/orbit-rotation-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/orbit-rotation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/orbit-rotation.json -------------------------------------------------------------------------------- /apps/www/public/r/registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/registry.json -------------------------------------------------------------------------------- /apps/www/public/r/safari-browser-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/safari-browser-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/safari-browser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/safari-browser.json -------------------------------------------------------------------------------- /apps/www/public/r/scale-letter-text-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/scale-letter-text-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/scale-letter-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/scale-letter-text.json -------------------------------------------------------------------------------- /apps/www/public/r/seperate-away-text-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/seperate-away-text-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/seperate-away-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/seperate-away-text.json -------------------------------------------------------------------------------- /apps/www/public/r/svg-ripple-effect-demo-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/svg-ripple-effect-demo-2.json -------------------------------------------------------------------------------- /apps/www/public/r/svg-ripple-effect-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/svg-ripple-effect-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/svg-ripple-effect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/svg-ripple-effect.json -------------------------------------------------------------------------------- /apps/www/public/r/terminal-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/terminal-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/terminal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/terminal.json -------------------------------------------------------------------------------- /apps/www/public/r/testimonal-slider-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/testimonal-slider-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/testimonal-slider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/testimonal-slider.json -------------------------------------------------------------------------------- /apps/www/public/r/text-shimmer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/text-shimmer.json -------------------------------------------------------------------------------- /apps/www/public/r/utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/utils.json -------------------------------------------------------------------------------- /apps/www/public/r/wavy-text-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/wavy-text-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/wavy-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/wavy-text.json -------------------------------------------------------------------------------- /apps/www/public/r/word-pull-up-text-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/word-pull-up-text-demo.json -------------------------------------------------------------------------------- /apps/www/public/r/word-pull-up-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/r/word-pull-up-text.json -------------------------------------------------------------------------------- /apps/www/public/registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/registry.json -------------------------------------------------------------------------------- /apps/www/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/public/site.webmanifest -------------------------------------------------------------------------------- /apps/www/registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry.json -------------------------------------------------------------------------------- /apps/www/registry/__index__.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/__index__.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/animated-badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/animated-badge.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/animated-frameworks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/animated-frameworks.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/animated-grid-pattern.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/animated-grid-pattern.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/animated-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/animated-list.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/animated-shiny-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/animated-shiny-button.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/animated-shiny-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/animated-shiny-text.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/aurora-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/aurora-text.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/blur-fade.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/blur-fade.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/blur-in-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/blur-in-text.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/browser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/browser.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/card-flip-hover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/card-flip-hover.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/clerk-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/clerk-otp.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/cobe-globe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/cobe-globe.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/dock-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/dock-text.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/fade-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/fade-text.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/font-weight-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/font-weight-text.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/github-inline-comments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/github-inline-comments.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/gradual-spacing-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/gradual-spacing-text.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/grid.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/hacker-background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/hacker-background.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/integrations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/integrations.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/ipad.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/ipad.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/iphone-17-pro.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/iphone-17-pro.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/letter-pull-up-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/letter-pull-up-text.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/line-shadow-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/line-shadow-text.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/live-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/live-button.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/logo-timeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/logo-timeline.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/macbook-pro.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/macbook-pro.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/map.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/map.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/marquee.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/marquee.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/multi-direction-slide-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/multi-direction-slide-text.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/novatrix-background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/novatrix-background.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/orbit-rotation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/orbit-rotation.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/safari-browser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/safari-browser.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/scale-letter-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/scale-letter-text.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/seperate-away-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/seperate-away-text.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/svg-ripple-effect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/svg-ripple-effect.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/terminal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/terminal.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/testimonal-slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/testimonal-slider.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/text-animate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/text-animate.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/text-shimmer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/text-shimmer.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/tweet-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/tweet-card.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/wavy-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/wavy-text.tsx -------------------------------------------------------------------------------- /apps/www/registry/eldoraui/word-pull-up-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/eldoraui/word-pull-up-text.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/animated-badge-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/animated-badge-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/animated-frameworks-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/animated-frameworks-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/animated-grid-pattern-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/animated-grid-pattern-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/animated-list-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/animated-list-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/animated-shiny-button-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/animated-shiny-button-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/blur-in-text-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/blur-in-text-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/browser-demo-2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/browser-demo-2.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/browser-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/browser-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/card-flip-hover-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/card-flip-hover-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/clerk-otp-demo-2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/clerk-otp-demo-2.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/clerk-otp-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/clerk-otp-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/cobe-globe-demo-2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/cobe-globe-demo-2.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/cobe-globe-demo-3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/cobe-globe-demo-3.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/cobe-globe-demo-4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/cobe-globe-demo-4.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/cobe-globe-demo-5.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/cobe-globe-demo-5.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/cobe-globe-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/cobe-globe-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/dock-text-demo-2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/dock-text-demo-2.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/dock-text-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/dock-text-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/fade-text-demo-2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/fade-text-demo-2.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/fade-text-demo-3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/fade-text-demo-3.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/fade-text-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/fade-text-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/font-weight-text-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/font-weight-text-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/github-inline-comments-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/github-inline-comments-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/gradual-spacing-text-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/gradual-spacing-text-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/grid-demo-2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/grid-demo-2.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/grid-demo-3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/grid-demo-3.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/grid-demo-4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/grid-demo-4.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/grid-demo-5.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/grid-demo-5.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/grid-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/grid-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/hacker-background-demo-2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/hacker-background-demo-2.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/hacker-background-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/hacker-background-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/integrations-demo-2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/integrations-demo-2.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/integrations-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/integrations-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/ipad-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/ipad-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/iphone-17-pro-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/iphone-17-pro-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/letter-pull-up-text-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/letter-pull-up-text-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/live-button-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/live-button-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/logo-timeline-demo-2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/logo-timeline-demo-2.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/logo-timeline-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/logo-timeline-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/macbook-pro-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/macbook-pro-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/map-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/map-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/multi-direction-slide-text-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/multi-direction-slide-text-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/novatrix-background-demo-2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/novatrix-background-demo-2.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/novatrix-background-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/novatrix-background-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/orbit-rotation-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/orbit-rotation-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/safari-browser-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/safari-browser-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/scale-letter-text-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/scale-letter-text-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/seperate-away-text-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/seperate-away-text-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/svg-ripple-effect-demo-2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/svg-ripple-effect-demo-2.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/svg-ripple-effect-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/svg-ripple-effect-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/terminal-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/terminal-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/testimonal-slider-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/testimonal-slider-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/wavy-text-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/wavy-text-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/example/word-pull-up-text-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/example/word-pull-up-text-demo.tsx -------------------------------------------------------------------------------- /apps/www/registry/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/index.ts -------------------------------------------------------------------------------- /apps/www/registry/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/lib/utils.ts -------------------------------------------------------------------------------- /apps/www/registry/registry-examples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/registry-examples.ts -------------------------------------------------------------------------------- /apps/www/registry/registry-lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/registry-lib.ts -------------------------------------------------------------------------------- /apps/www/registry/registry-ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/registry/registry-ui.ts -------------------------------------------------------------------------------- /apps/www/scripts/build-registry.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/scripts/build-registry.mts -------------------------------------------------------------------------------- /apps/www/source.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/source.config.ts -------------------------------------------------------------------------------- /apps/www/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/styles/globals.css -------------------------------------------------------------------------------- /apps/www/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/tsconfig.json -------------------------------------------------------------------------------- /apps/www/tsconfig.scripts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/tsconfig.scripts.json -------------------------------------------------------------------------------- /apps/www/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/types/index.d.ts -------------------------------------------------------------------------------- /apps/www/types/unist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/apps/www/types/unist.ts -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/lefthook.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/registry.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthikmudunuri/eldoraui/HEAD/turbo.json --------------------------------------------------------------------------------