### Install Verify Human Component using npx Source: https://more-shadcn.noair.fun/components/verify-human This command installs the 'verify-human' components from More Shadcn. It uses the shadcn-svelte CLI to add the component from a specified JSON URL. This is the primary installation method. ```bash npx shadcn-svelte@latest add https://more-shadcn.noair.fun/r/verify-human.json ``` -------------------------------- ### Install Spotlight Card Component Source: https://more-shadcn.noair.fun/components/spotlight-card Installs the spotlight-card components using the shadcn-svelte CLI. This command fetches the necessary files from the provided URL. ```bash npx shadcn-svelte@latest add https://more-shadcn.noair.fun/r/spotlight-card.json ``` -------------------------------- ### Install Phone Input Component Source: https://more-shadcn.noair.fun/components/phone-input Installs the phone-input components using the shadcn-svelte CLI. This command fetches the necessary files from the specified URL. ```bash npx shadcn-svelte@latest add https://more-shadcn.noair.fun/r/phone-input.json ``` -------------------------------- ### Install Color Picker Component Source: https://more-shadcn.noair.fun/components/color-picker Installs the color-picker components using the shadcn-svelte CLI. This command fetches the necessary files from the provided URL. ```bash npx shadcn-svelte@latest add https://more-shadcn.noair.fun/r/color-picker.json ``` -------------------------------- ### Install Video Components using npm Source: https://more-shadcn.noair.fun/components/video This command installs the 'video' components from More Shadcn using npm. It fetches the component configuration from the provided URL. ```bash npx shadcn-svelte@latest add https://more-shadcn.noair.fun/r/video.json ``` -------------------------------- ### Install Choicebox Component with npm Source: https://more-shadcn.noair.fun/components/choicebox Installs the 'choicebox' components from more-shadcn.noair.fun using npx. This command fetches and adds the necessary files to your project. ```bash npx shadcn-svelte@latest add https://more-shadcn.noair.fun/r/choicebox.json ``` -------------------------------- ### Svelte Walkthrough Component Basic Setup Source: https://more-shadcn.noair.fun/components/walkthrough This snippet demonstrates the basic setup for the Walkthrough component in Svelte. It defines the steps for the tour, including target element IDs, titles, descriptions, and positioning. The `Walkthrough` component is then rendered, bound to an `openTour` variable and configured with the defined steps and padding. ```svelte ``` -------------------------------- ### Install Timeline Component (CLI) Source: https://more-shadcn.noair.fun/components/timeline Command to install the timeline components using npx with shadcn-svelte. This command fetches the necessary files from the provided URL. ```bash npx shadcn-svelte@latest add https://more-shadcn.noair.fun/r/timeline.json ``` -------------------------------- ### Install Autocomplete Component (CLI) Source: https://more-shadcn.noair.fun/components/autocomplete Command to install the Autocomplete component and its dependencies using the shadcn-svelte CLI. This command fetches the necessary files from the provided URL. ```bash npx shadcn-svelte@latest add https://more-shadcn.noair.fun/r/autocomplete.json ``` -------------------------------- ### Install Chip Component Source: https://more-shadcn.noair.fun/components/chip Command to install the Chip component from more-shadcn.noair.fun using npx. This command fetches the necessary files to integrate the chip functionality into your project. ```bash npx shadcn-svelte@latest add https://more-shadcn.noair.fun/r/chip.json ``` -------------------------------- ### Install Audio Wave Component with Shadcn Svelte Source: https://more-shadcn.noair.fun/components/audio-wave Installs the 'audio-wave' component using the shadcn-svelte CLI. This command fetches the component's configuration and adds it to your project. ```bash npx shadcn-svelte@latest add https://more-shadcn.noair.fun/r/audio-wave.json ``` -------------------------------- ### Install Number Ticker Component Source: https://more-shadcn.noair.fun/components/number-ticker Installs the 'number-ticker' component using the shadcn-svelte CLI. This command fetches and adds the necessary component files to your project. ```bash npx shadcn-svelte@latest add https://more-shadcn.noair.fun/r/number-ticker.json ``` -------------------------------- ### Install Collaborative Cursor Component Source: https://more-shadcn.noair.fun/components/cursor Installs the cursor component using the shadcn-svelte CLI. This command fetches the necessary files to integrate the collaborative cursor functionality into your Svelte project. ```bash npx shadcn-svelte@latest add https://more-shadcn.noair.fun/r/cursor.json ``` -------------------------------- ### Choicebox Visual Selection Example in HTML Source: https://more-shadcn.noair.fun/components/choicebox Illustrates creating a visual selection interface, similar to a theme selector, by combining icons, images, and hidden indicators within Choicebox.Item elements. This example shows light, dark, and system theme options. ```html Light Mode Light
...
``` -------------------------------- ### Install Image Zoom Component Source: https://more-shadcn.noair.fun/components/image-zoom Command to install the image-zoom components using the shadcn-svelte CLI. This command fetches the necessary files to integrate the image zoom functionality into your project. ```bash npx shadcn-svelte@latest add https://more-shadcn.noair.fun/r/image-zoom.json ``` -------------------------------- ### Install Status Dot Component Source: https://more-shadcn.noair.fun/components/status-dot Command to install the status-dot components using shadcn-svelte. This command fetches the component configuration from the provided JSON URL. ```bash npx shadcn-svelte@latest add https://more-shadcn.noair.fun/r/status-dot.json ``` -------------------------------- ### Choicebox Grid Layout Example in HTML Source: https://more-shadcn.noair.fun/components/choicebox Shows how to apply CSS grid classes to the Choicebox.Root element to create horizontal card layouts for options. This example displays a pricing plan selection. ```html
Basic
...
...
``` -------------------------------- ### Install Sortable Component using npm Source: https://more-shadcn.noair.fun/components/sortable Installs the 'sortable' components from more-shadcn.noair.fun using npx. This command fetches the necessary files to integrate the sortable list functionality into your project. ```bash npx shadcn-svelte@latest add https://more-shadcn.noair.fun/r/sortable.json ``` -------------------------------- ### Add Shiny Button Component Source: https://more-shadcn.noair.fun/components/shiny-button Installs the Shiny Button component using the shadcn-svelte CLI. This command fetches and adds the necessary files for the component to your project. ```bash npx shadcn-svelte@latest add https://more-shadcn.noair.fun/r/shiny-button.json ``` -------------------------------- ### Basic Shiny Button Usage Source: https://more-shadcn.noair.fun/components/shiny-button A fundamental example of implementing the Shiny Button component. It shows how to include the button in your markup and display text content along with an icon. ```svelte Join Waitlist ``` -------------------------------- ### Add Scrubbable Component to Svelte Project Source: https://more-shadcn.noair.fun/components/scrubbable Installs the scrubbable components into your Svelte project using npx. This command fetches the component definitions from the specified URL. ```bash npx shadcn-svelte@latest add https://more-shadcn.noair.fun/r/scrubbable.json ``` -------------------------------- ### Install Horizontal Scroll Component Source: https://more-shadcn.noair.fun/components/horizontal-scroll This command installs the 'horizontal-scroll' components from more-shadcn.noair.fun using the shadcn-svelte CLI. It's a prerequisite for using the HorizontalScroll component in your Svelte project. ```bash npx shadcn-svelte@latest add https://more-shadcn.noair.fun/r/horizontal-scroll.json ``` -------------------------------- ### Create Action Chip Source: https://more-shadcn.noair.fun/components/chip Example of creating a basic action chip using the Chip.Root component. The chip is interactive and can trigger a function when clicked. ```jsx Action Chip ``` -------------------------------- ### Svelte Walkthrough Component Customization with Snippet Source: https://more-shadcn.noair.fun/components/walkthrough This example showcases how to fully customize the appearance of the Walkthrough component's cards using a Svelte snippet. The custom design features a dark theme with purple accents. The snippet receives a context object (`ctx`) which provides access to methods like `next()` and `close()` to control the tour flow. ```svelte {#snippet children(ctx)}

{ctx.currentStep()?.title}

{ctx.currentStep()?.description}

{/snippet}
``` -------------------------------- ### Collapsed Wheel Picker Example (Svelte) Source: https://more-shadcn.noair.fun/components/wheel-picker Shows a collapsed state for the Wheel Picker component using Svelte. The 'collapsed' prop on the root element reduces its visual footprint, useful for certain UI designs. It still functions with a group of items. ```svelte {#each frameworks as fw} {fw} {/each} ``` -------------------------------- ### Image Zoom Component Basic Usage Source: https://more-shadcn.noair.fun/components/image-zoom Example of using the ImageZoom.Root and ImageZoom.Trigger components for a single image. Clicking the image will open it in a larger, centered overlay. ```svelte ``` -------------------------------- ### Infinite Loop Wheel Picker (Svelte) Source: https://more-shadcn.noair.fun/components/wheel-picker Demonstrates an infinite loop functionality for a Wheel Picker group in Svelte. The 'loop' prop allows the picker to cycle continuously through its items without a defined start or end. ```svelte {#each days as day} {day} {/each} ``` -------------------------------- ### Icon-Only Bottom Navigation in Svelte Source: https://more-shadcn.noair.fun/components/bottom-nav This example shows how to configure the Bottom Navigation component to display only icons, omitting text labels for a more compact interface. It uses the same `BottomNav.Root` and `BottomNav.Item` components but only includes icon elements within each item. ```html ``` -------------------------------- ### Tag Input Validation with Email Regex Source: https://more-shadcn.noair.fun/components/tag-input Shows how to implement tag validation using a provided regex function. In this example, only valid email formats are accepted as tags. ```svelte emailRegex.test(tag)} /> ``` -------------------------------- ### Create Filter Chip Source: https://more-shadcn.noair.fun/components/chip Example of creating a filter chip with an outline variant. The 'active' prop is used to indicate selection, and the chip can be toggled. ```jsx {label} ``` -------------------------------- ### Timeline with Rich Content (HTML) Source: https://more-shadcn.noair.fun/components/timeline Demonstrates how to embed rich content, such as images, within a Timeline item. This example shows a layout for displaying design assets or other media. ```html New Assets
``` -------------------------------- ### Table Server Status Display Source: https://more-shadcn.noair.fun/components/status-dot A complete example demonstrating how to use the Status Dot component within a table to visually represent server status (e.g., Online, Maintenance). ```svelte
Server Status
US-East-1
Online
EU-West-3
Maintenance
``` -------------------------------- ### Use Custom Video Player Component Source: https://more-shadcn.noair.fun/components/video This snippet demonstrates how to use the custom video player component. It requires the 'video' component to be installed. The component accepts props such as src, poster, autoplay, muted, and loop to control video playback. ```html