### Add Component using shadcn CLI with Registry URL
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/README.md
Install components by providing the full registry URL to the shadcn CLI. This example adds 'navbar-menu'.
```bash
npx shadcn@latest add https://ui.heygaia.io/r/navbar-menu.json
```
--------------------------------
### Installation
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/navbar-menu.mdx
Instructions for installing the Navbar Menu component and its dependencies.
```APIDOC
## Installation
### Automatic Installation
Use the following command to install the component automatically:
```bash
npm install @theexperiencecompany/gaia-ui
```
### Manual Installation
Copy and paste the following code into your project:
```typescript
// registry/new-york/ui/navbar-menu.tsx
// ... component code ...
```
This component requires `motion` for animations:
```bash
npm install motion
```
```
--------------------------------
### Install File Dropzone Component (Automatic)
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/file-dropzone.mdx
Use this command to automatically install the File Dropzone component. This is the recommended installation method.
```bash
npm install @theexperiencecompany/gaia-ui
```
--------------------------------
### Install dependencies
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/author-tooltip.mdx
Install the required Avatar and Tooltip components using the shadcn CLI.
```bash
npx shadcn@latest add avatar tooltip
```
--------------------------------
### Install Link Preview Dependencies
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/link-preview.mdx
Commands to install the required icons and the underlying tooltip component.
```bash
pnpm add @hugeicons/react @hugeicons/core-free-icons
```
```bash
npx shadcn@latest add tooltip
```
--------------------------------
### Usage Examples
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/navbar-menu.mdx
Examples demonstrating different ways to use the Navbar Menu component.
```APIDOC
## Usage Examples
### Full Interactive Navbar
This example shows the complete implementation of the navbar menu within an actual navbar.
```jsx
```
### Basic Usage
A simple navbar with an expandable menu and icons.
```jsx
```
### With Static Links
A navbar that includes both dropdown menus and static links.
```jsx
```
### Usage in Gaia
Demonstrates the navbar menu's role in fast navigation between Chat, Mail, and Settings within the Gaia application.
```jsx
// Example usage within Gaia's app skeleton
// ...
```
```
--------------------------------
### Install Dependencies
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/github-stars-button.mdx
Install the required Radix UI icons dependency for the button component.
```bash
pnpm add @radix-ui/react-icons
```
--------------------------------
### Component File Structure Example
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/AGENTS.md
Illustrates the directory structure for creating a new component, including the main component file and preview examples.
```tree
registry/
└── new-york/
└── ui/
└── your-component.tsx ← Your new component
```
```tree
components/
└── previews/
└── your-component/
├── default.tsx ← Basic usage example
├── with-variants.tsx ← Different variants
└── custom-example.tsx ← Any other demos
```
--------------------------------
### Install Todo Item Component (Manual)
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/todo-item.mdx
Copy and paste this code into your project to manually install the Todo Item component. Ensure you also install the required dependencies.
```tsx
import { TodoItem } from "@/components/ui/todo-item";
interface TodoLabel {
id: string;
name: string;
color?: string;
}
interface TodoSubtask {
id: string;
title: string;
completed: boolean;
}
interface TodoProject {
id: string;
name: string;
color?: string;
}
interface TodoItemProps {
id: string;
title: string;
description?: string;
completed?: boolean;
priority?: "high" | "medium" | "low" | "none";
dueDate?: string | Date;
labels?: TodoLabel[];
subtasks?: TodoSubtask[];
project?: TodoProject;
onToggleComplete?: (id: string, completed: boolean) => void;
onClick?: (id: string) => void;
isSelected?: boolean;
className?: string;
}
export function TodoItem(props: TodoItemProps) {
// Implementation details...
return (
);
}
function formatDate(date: string | Date): string {
const options: Intl.DateTimeFormatOptions = { month: "short", day: "numeric" };
return new Date(date).toLocaleDateString(undefined, options);
}
function cn(...args: string[]): string {
return args.filter(Boolean).join(' ');
}
interface CheckboxProps {
checked: boolean;
onCheckedChange: (checked: boolean) => void;
}
function Checkbox(props: CheckboxProps) {
return (
);
}
```
--------------------------------
### Install Email Compose Card
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/email-compose-card.mdx
Use the automatic installation command to add the component to your project.
```bash
```
--------------------------------
### Install Pricing Card
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/pricing-card.mdx
Use the CLI to add the component to your project.
```bash
npx shadcn@latest add "https://ui.heygaia.io/r/pricing-card"
```
--------------------------------
### Install Dependencies
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/holo-card.mdx
Install the required react-parallax-tilt package for the tilt functionality.
```bash
npm install react-parallax-tilt
```
--------------------------------
### GitHub Stars Button - Installation
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/github-stars-button.mdx
Instructions for installing the GitHub Stars Button component.
```APIDOC
## GitHub Stars Button - Installation
### Automatic Installation
Use the following command to install the component automatically:
```bash
```
### Manual Installation
Copy and paste the following code into your project:
```tsx
// filePath: registry/new-york/ui/github-stars-button.tsx
// Content of the file would be here.
```
Install required dependencies:
```bash
pnpm add @radix-ui/react-icons
```
```
--------------------------------
### Install Wave Spinner (Automatic)
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/wave-spinner.mdx
Use this command to automatically install the Wave Spinner component and its dependencies.
```bash
npm install class-variance-authority
```
--------------------------------
### Install Model Selector Component (Automatic)
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/model-selector.mdx
Use this command to automatically install the Model Selector component.
```bash
npm install @gaia/ui
# or
yarn add @gaia/ui
```
--------------------------------
### Install Dependencies via CLI
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/weather-card.mdx
Run this command to install the necessary UI dependencies for the Weather Card component.
```bash
npx shadcn@latest add button dropdown-menu tooltip
```
--------------------------------
### Install Base shadcn/ui Components
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/README.md
Install the standard base components from shadcn/ui that the GAIA UI registry depends on. This includes 'button', 'tooltip', 'avatar', 'dropdown-menu', 'popover', and 'skeleton'.
```bash
npx shadcn@latest add button tooltip avatar dropdown-menu popover skeleton
```
--------------------------------
### Install Composer Component (Automatic)
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/composer.mdx
Use this command for automatic installation of the Composer component and its dependencies.
```bash
npx shadcn@latest add file-preview slash-command-dropdown
```
--------------------------------
### Default Usage Example
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/tool-calls-section.mdx
Example of how to use the ToolCallsSection component with a basic array of tool calls.
```APIDOC
## Default Usage
Shows a collapsible timeline of tools an AI agent used during a conversation, with stacked icons and expandable details for each call.
### Request Example
```tsx
import { ToolCallsSection } from "@/components/ui/tool-calls-section";
const toolCalls = [
{
tool_name: "search_web",
tool_category: "search",
message: "Searched for 'React best practices'",
inputs: { query: "React best practices" },
output: "Found 10 relevant results.",
},
{
tool_name: "send_email",
tool_category: "gmail",
message: "Sent email to the team",
},
];
export default function Example() {
return ;
}
```
```
--------------------------------
### Install dependencies
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/search-results-tabs.mdx
Required packages for the component functionality.
```bash
pnpm add framer-motion @hugeicons/react @hugeicons/core-free-icons
```
```bash
npx shadcn@latest add button popover skeleton
```
--------------------------------
### GitHub Stars Button - Examples
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/github-stars-button.mdx
Demonstrates various examples of the GitHub Stars Button, including different repositories, sizes, and styling.
```APIDOC
## GitHub Stars Button - Examples
### Different Repositories
```tsx
```
### Without Label
```tsx
```
### Different Sizes
```tsx
```
### Custom Styling
```tsx
```
```
--------------------------------
### Usage Example for TodoItem Component
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/todo-item.mdx
Demonstrates how to use the TodoItem component with various props including title, description, completion status, priority, and due date. Includes an example of a completion toggle handler.
```tsx
import { TodoItem } from "@/components/ui/todo-item";
export default function Example() {
return (
{
console.log(`Todo ${id} completed: ${completed}`);
}}
/>
);
}
```
--------------------------------
### Install Dependencies
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/file-preview.mdx
Required packages for icons used within the FilePreview component.
```bash
npm install @hugeicons/react @hugeicons/core-free-icons
```
--------------------------------
### Install File Dropzone Component (Manual)
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/file-dropzone.mdx
Manually install the File Dropzone component by copying the provided code into your project. Ensure the file path is correct.
```tsx
import { FileDropzone } from "@/components/ui/file-dropzone";
export default function Example() {
return (
console.log(files)}
accept="image/*,.pdf"
maxSize={5 * 1024 * 1024}
maxFiles={5}
/>
);
}
```
--------------------------------
### Implement FilePreview Component
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/file-preview.mdx
Basic usage example showing how to pass an array of files and handle removal events.
```tsx
import { FilePreview } from "@/components/ui/file-preview";
export default function Example() {
const files = [
{
id: "1",
url: "/uploads/document.pdf",
name: "report.pdf",
type: "application/pdf",
},
];
return (
console.log("Remove:", id)}
/>
);
}
```
--------------------------------
### Install GAIA UI Components with CLI
Source: https://context7.com/theexperiencecompany/gaia-ui/llms.txt
Use the GAIA UI CLI to add single or multiple components. Alternatively, use the shadcn CLI directly with the GAIA registry URL and configure the @heygaia namespace in components.json.
```bash
npx @heygaia/ui add composer
```
```bash
npx @heygaia/ui add raised-button chat-bubble tool-calls-section
```
```bash
npx shadcn@latest add https://ui.heygaia.io/r/navbar-menu.json
```
```json
# Configure the @heygaia namespace in components.json
# {
# "registries": {
# "@heygaia": "https://ui.heygaia.io/r/{name}.json"
# }
# }
# Then use: npx shadcn@latest add @heygaia/navbar-menu
```
--------------------------------
### Install Calendar Event Card (Manual)
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/calendar-event-card.mdx
Copy and paste this code into your project for manual installation of the calendar-event-card component.
```tsx
import { CalendarEventCard } from "@/components/ui/calendar-event-card";
export default function Example() {
return (
{/* Content */}
);
}
```
--------------------------------
### Model Selector Usage Example
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/model-selector.mdx
Example of how to integrate and use the Model Selector component in a React application.
```typescript
import { ModelSelector } from "@/components/ui/model-selector";
import { useState } from "react";
interface AIModel {
id: string;
name: string;
provider: string;
icon?: string;
isPro?: boolean;
description?: string;
}
const models: AIModel[] = [
{ id: "gpt-4", name: "GPT-4", provider: "OpenAI", isPro: true },
{ id: "claude", name: "Claude", provider: "Anthropic" },
];
export default function Example() {
const [selected, setSelected] = useState(models[0]);
return (
);
}
```
--------------------------------
### Install clsx and tailwind-merge Dependencies
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/installation.mdx
Install the necessary npm packages for the `cn()` utility function. These are required for class merging in GAIA UI components.
```bash
npm install clsx tailwind-merge
```
--------------------------------
### Implement SearchResultsTabs
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/search-results-tabs.mdx
Basic usage example showing how to structure the search results object and pass it to the component.
```tsx
import { SearchResultsTabs } from "@/components/ui/search-results-tabs";
export default function Example() {
const searchResults = {
web: [
{
title: "Example Site",
url: "https://example.com",
content: "Description of the website...",
},
],
images: [
"https://images.unsplash.com/photo-1...",
"https://images.unsplash.com/photo-2...",
],
news: [
{
title: "News Article",
url: "https://news.example.com",
content: "Article content...",
score: 0.95,
date: "2025-11-10",
},
],
};
return ;
}
```
--------------------------------
### Install Motion dependency
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/navbar-menu.mdx
Required dependency for handling component animations.
```bash
npm install motion
```
--------------------------------
### Install D3.js Dependency
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/knowledge-graph.mdx
Install the D3.js library and its types using npm. This is a prerequisite for using the Knowledge Graph component.
```bash
npm install d3 @types/d3
```
--------------------------------
### Install Radix UI dependencies
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/nested-menu.mdx
Required dependency for the Nested Menu component.
```bash
npm install @radix-ui/react-popover
```
--------------------------------
### MDX Documentation Structure
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/AGENTS.md
Example of an MDX file for documenting a component, including frontmatter, component previews, and usage sections.
```mdx
---
title: Your Component
description: What it does and why someone would use it.
---
## Usage
Show how to use it.
## Installation
## Props
Document all the props in a table.
```
--------------------------------
### Implement Link Preview Component
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/link-preview.mdx
Basic usage example for integrating the LinkPreview component into a React application.
```tsx
import { LinkPreview } from "@/components/ui/link-preview";
export default function Example() {
return (
Check out the{" "}
GAIA repository
{" "}
to learn more about this open-source AI assistant.
);
}
```
--------------------------------
### GitHub Stars Button - Default Usage
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/github-stars-button.mdx
Basic example of how to use the GitHub Stars Button component.
```APIDOC
## GitHub Stars Button - Default Usage
### Description
This is the default usage of the GitHub Stars Button component.
### Method
N/A (Component Usage)
### Endpoint
N/A (Component Usage)
### Request Body
N/A (Component Usage)
### Request Example
```tsx
import { GitHubStarsButton } from "@/components/ui/github-stars-button";
export default function Example() {
return ;
}
```
### Response
N/A (Component Usage)
### Response Example
N/A (Component Usage)
```
--------------------------------
### Manual Installation of Code Block Component
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/code-block.mdx
Provides the file path for manually copying the Code Block component's source code into your project.
```tsx
```
--------------------------------
### Manual Installation of Email Compose Card
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/email-compose-card.mdx
Copy the source code directly into your project and adjust import paths as necessary.
```tsx
```
--------------------------------
### Handle Image Clicks
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/search-results-tabs.mdx
Example of using the onImageClick callback to handle user interactions with images.
```tsx
const [selectedImage, setSelectedImage] = useState(null);
```
--------------------------------
### Nested Menu Hook Usage
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/nested-menu.mdx
Example of using the `useNestedMenu` hook for more granular control over menu state and behavior.
```APIDOC
## Use Nested Menu Hook Example
### Description
This example shows how to leverage the `useNestedMenu` hook to manage the open/closed state and interactions of a nested menu, offering more flexibility for custom UI elements.
### Code
```tsx
import { useNestedMenu, NestedMenuTooltip } from "@/components/ui/nested-menu";
function MyComponent() {
const resourcesMenu = useNestedMenu();
return (
<>
{} },
{ key: "blog", label: "Blog", onSelect: () => {} },
]}
onMouseEnter={resourcesMenu.cancelClose}
onMouseLeave={resourcesMenu.handleMouseLeave}
/>
>
);
}
```
```
--------------------------------
### Pricing Card Variants
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/pricing-card.mdx
Examples showing different configurations for free tiers, yearly discounts, and current plan status.
```tsx
```
```tsx
```
```tsx
```
--------------------------------
### Basic Chat Composer Usage
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/composer.mdx
Demonstrates the basic setup of the Composer component. Configure the placeholder text and handle message submission.
```tsx
import { Composer } from "@/components/ui/composer";
export default function Chat() {
return (
{
console.log("Message:", message);
console.log("Files:", files);
}}
/>
);
}
```
--------------------------------
### Add Knowledge Graph Component
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/knowledge-graph.mdx
Add the Knowledge Graph component to your project using the shadcn-ui CLI. This command fetches and installs the necessary files.
```bash
npx shadcn@latest add "https://ui.heygaia.io/r/knowledge-graph"
```
--------------------------------
### Notification Card Usage Example
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/notification-card.mdx
Demonstrates how to use the NotificationCard component with various props, including title, body, status, actions, and event handlers.
```tsx
import { NotificationCard } from "@/components/ui/notification-card";
export default function Example() {
return (
{
console.log(`Action ${actionId} on notification ${notifId}`);
}}
/>
);
}
```
--------------------------------
### Add GAIA UI Component via CLI
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/installation.mdx
Use the GAIA UI CLI to add a component directly to your project. This command installs the component and any necessary dependencies.
```bash
npx shadcn@latest add https://ui.heygaia.io/r/raised-button.json
```
--------------------------------
### Minimal Weather Card Example
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/weather-card.mdx
Displays only the current weather conditions, hiding the forecast and detailed metrics. Ensure `weatherData` is properly formatted.
```tsx
```
--------------------------------
### Add Multiple Components with @heygaia/ui
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/README.md
Add multiple components such as 'raised-button', 'chat-bubble', and 'tool-calls-section' simultaneously.
```bash
npx @heygaia/ui add raised-button chat-bubble tool-calls-section
```
--------------------------------
### Display News Only
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/search-results-tabs.mdx
Example of rendering only news search results.
```tsx
```
--------------------------------
### Display Images Only
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/search-results-tabs.mdx
Example of rendering only image search results.
```tsx
```
--------------------------------
### Basic Knowledge Graph Usage
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/knowledge-graph.mdx
Demonstrates how to use the KnowledgeGraph component with sample nodes and links. Configure click handlers for node interactions. Ensure the parent container has a defined height.
```tsx
import { KnowledgeGraph } from "@/components/ui/knowledge-graph";
const nodes = [
{ id: "1", label: "React", type: "technology" },
{ id: "2", label: "TypeScript", type: "technology" },
{ id: "3", label: "User", type: "user", size: 30 },
];
const links = [
{ source: "3", target: "1", label: "uses" },
{ source: "3", target: "2", label: "uses" },
{ source: "1", target: "2" },
];
export default function Example() {
return (
console.log(node)}
/>
);
}
```
--------------------------------
### Display Web Results Only
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/search-results-tabs.mdx
Example of rendering only web search results.
```tsx
```
--------------------------------
### Add Component using Namespace Syntax with shadcn CLI
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/README.md
After configuring the '@heygaia' namespace, use this syntax to add components like '@heygaia/navbar-menu'.
```bash
npx shadcn@latest add @heygaia/navbar-menu
```
--------------------------------
### Register a New UI Component
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/AGENTS.md
Add component details to the registry.json file to make it discoverable. Ensure all required fields like name, type, title, and file path are included.
```json
{
"name": "your-component",
"type": "registry:ui",
"title": "Your Component",
"description": "A brief, compelling description of what this component does.",
"dependencies": ["any-npm-packages"],
"registryDependencies": ["icons", "other-gaia-components"],
"files": [
{
"path": "registry/new-york/ui/your-component.tsx",
"type": "registry:ui"
}
]
}
```
--------------------------------
### Nested Menu Usage
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/nested-menu.mdx
Example of how to use the NestedMenu component with sections and a trigger.
```APIDOC
## Nested Menu Usage Example
### Description
This example demonstrates how to integrate the `NestedMenu` component into your application, providing a multi-level navigation structure triggered by a button.
### Code
```tsx
import { NestedMenu } from "@/components/ui/nested-menu";
import { Button } from "@/components/ui/button";
import { Settings, ChevronRight } from "lucide-react";
const menuSections = [
{
title: "Actions",
items: [
{
key: "settings",
label: "Settings",
icon: Settings,
onSelect: () => console.log("Settings clicked"),
},
{
key: "download",
label: "Download",
hasSubmenu: true,
submenuItems: [
{ key: "mac", label: "macOS", onSelect: () => {} },
{ key: "windows", label: "Windows", onSelect: () => {} },
],
},
],
},
];
export default function Example() {
return (
Open Menu}
arrowIcon={ChevronRight}
/>
);
}
```
```
--------------------------------
### Add Single Component with @heygaia/ui
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/README.md
Use this command to add a single component like 'navbar-menu' to your project.
```bash
npx @heygaia/ui add navbar-menu
```
--------------------------------
### Implement chat message group
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/message-bubble.mdx
Usage example for the ChatMessage component to display a sequence of messages with a timestamp.
```tsx
import { ChatMessage } from "@/components/ui/message-bubble";
export default function Example() {
return (
);
}
```
--------------------------------
### Development Workflow Commands
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/README.md
Use these commands to manage dependencies, run the development server, build the registry, and perform type checking.
```bash
# Install dependencies
pnpm install
# Run dev server
pnpm run dev
# Build registry
pnpm run registry:build
# Type check
pnpm run type
```
--------------------------------
### Implement single message bubble
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/content/docs/components/message-bubble.mdx
Usage example for the MessageBubble component to display individual sent or received messages.
```tsx
import { MessageBubble } from "@/components/ui/message-bubble";
export default function Example() {
return (
<>
>
);
}
```
--------------------------------
### Configure @heygaia Namespace in components.json
Source: https://github.com/theexperiencecompany/gaia-ui/blob/main/README.md
Configure the '@heygaia' namespace in your 'components.json' file to simplify adding components using the shadcn CLI.
```json
{
"registries": {
"@heygaia": "https://ui.heygaia.io/r/{name}.json"
}
}
```