30 lines
765 B
Markdown
30 lines
765 B
Markdown
# shadcn/ui — Installation
|
|
|
|
How to add shadcn/ui components to your TaylorDB app.
|
|
|
|
---
|
|
|
|
## Install Individual Components
|
|
|
|
```bash
|
|
# Core components (often already included)
|
|
pnpm dlx shadcn@latest add button card input label textarea select tabs alert
|
|
|
|
# Dashboard-specific components
|
|
pnpm dlx shadcn@latest add table dialog dropdown-menu toast sheet form badge avatar skeleton
|
|
|
|
# Data display components
|
|
pnpm dlx shadcn@latest add separator progress scroll-area tooltip
|
|
|
|
# Advanced components
|
|
pnpm dlx shadcn@latest add command popover calendar date-picker
|
|
```
|
|
|
|
---
|
|
|
|
For patterns and examples, see:
|
|
|
|
- **Dashboard patterns**: `SHADCN_DASHBOARD_PATTERNS.md`
|
|
- **Design & layout**: `SHADCN_DESIGN_AND_LAYOUT.md`
|
|
- **Main guide index**: `SHADCN_COMPONENTS_GUIDE.md`
|