Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
- For user-facing install snippets, keep consistency with current docs patterns (repo uses `pnpm`; public snippets may include multi-manager CLI commands).

## Integration Points
- `src/components/dynamic-main-content.tsx` builds install commands and links to `https://careui.vercel.app`.
- `src/components/dynamic-main-content.tsx` builds install commands and links to `https://careui.ohc.network`.
- `src/lib/documentation.ts` and `src/lib/registry/*.tsx` define displayed docs and examples.
- `src/lib/component-registry.ts` bridges app-facing docs types to the lazy registry loader.
- Registry metadata for shadcn consumers is exposed through `public/registry.json` and `public/registry/care-ui/index.json`.
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ Once deployed, users can install components:

```bash
# Install via shadcn CLI
npx shadcn@latest add https://careui.vercel.app/registry/care-ui/my-component/my-component.json
npx shadcn@latest add https://careui.ohc.network/registry/care-ui/my-component/my-component.json
```

Components will be installed to `components/careui/` in the user's project:
Expand All @@ -260,4 +260,4 @@ import { MyComponent } from "@/components/careui/my-component"

## Questions?

Check the [Contributing](https://careui.vercel.app) page in the documentation for detailed examples and guidance.
Check the [Contributing](https://careui.ohc.network) page in the documentation for detailed examples and guidance.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ A modern React component library built with Tailwind CSS and Radix UI. Beautiful
Install components from the Care UI registry using the shadcn CLI:

```bash
npx shadcn@latest add button --registry https://careui.vercel.app
npx shadcn@latest add button --registry https://careui.ohc.network
```

## 📦 Installation

### Single Component

```bash
npx shadcn@latest add button --registry https://careui.vercel.app
npx shadcn@latest add button --registry https://careui.ohc.network
```

### Multiple Components

```bash
npx shadcn@latest add button input label card --registry https://careui.vercel.app
npx shadcn@latest add button input label card --registry https://careui.ohc.network
```

### Set as Default Registry
Expand All @@ -31,7 +31,7 @@ Add to your `components.json`:
```json
{
"registries": {
"care-ui": "https://careui.vercel.app"
"care-ui": "https://careui.ohc.network"
}
}
```
Expand All @@ -44,7 +44,7 @@ npx shadcn@latest add care-ui:button

## 📚 Documentation

Visit **[careui.vercel.app](https://careui.vercel.app)** for:
Visit **[careui.ohc.network](https://careui.ohc.network)** for:
- Live component previews
- Interactive examples
- Installation guides
Expand All @@ -61,7 +61,7 @@ Over 50+ components including:
- **Feedback**: Alert, Toast, Progress, Skeleton, Badge, Avatar
- **Utilities**: Scroll Area, Resizable, Toggle, Carousel, Chart

[View all components →](https://careui.vercel.app)
[View all components →](https://careui.ohc.network)

## 🛠️ Tech Stack

Expand All @@ -86,6 +86,6 @@ MIT License - see LICENSE file for details.

## 🔗 Links

- **Website**: [careui.vercel.app](https://careui.vercel.app)
- **Registry**: [careui.vercel.app/registry.json](https://careui.vercel.app/registry.json)
- **Website**: [careui.ohc.network](https://careui.ohc.network)
- **Registry**: [careui.ohc.network/registry.json](https://careui.ohc.network/registry.json)
- **Repository**: [github.com/vinutv/careui](https://github.com/vinutv/careui)
10 changes: 5 additions & 5 deletions REGISTRY.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ A modern React component library built with Tailwind CSS and Radix UI.
Install components from the Care UI registry using the shadcn CLI:

```bash
npx shadcn@latest add button --registry https://careui.vercel.app
npx shadcn@latest add button --registry https://careui.ohc.network
```

## Available Components
Expand Down Expand Up @@ -79,13 +79,13 @@ npx shadcn@latest add button --registry https://careui.vercel.app
### Install a single component

```bash
npx shadcn@latest add button --registry https://careui.vercel.app
npx shadcn@latest add button --registry https://careui.ohc.network
```

### Install multiple components

```bash
npx shadcn@latest add button input label card --registry https://careui.vercel.app
npx shadcn@latest add button input label card --registry https://careui.ohc.network
```

### Configure as default registry
Expand All @@ -95,7 +95,7 @@ Add to your `components.json`:
```json
{
"registries": {
"care-ui": "https://careui.vercel.app"
"care-ui": "https://careui.ohc.network"
}
}
```
Expand All @@ -108,7 +108,7 @@ npx shadcn@latest add care-ui:button

## Documentation

Visit [https://careui.vercel.app](https://careui.vercel.app) for full documentation and examples.
Visit [https://careui.ohc.network](https://careui.ohc.network) for full documentation and examples.

## License

Expand Down
Loading