mirror of
https://github.com/jhbruhn/respira.git
synced 2026-01-27 02:13:41 +00:00
- Initialize shadcn/ui with cssVariables and path aliases - Install core components: Button, Alert, Badge, Card, Dialog, etc. - Configure Tailwind v4 theme integration with shadcn color system - Migrate ConnectionPrompt to use shadcn Button and Alert components - Add cursor-pointer to button variants for better UX - Remove unused MachineConnection.tsx component Code reduction: 87% in ConnectionPrompt button (150+ char className → 20 char) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
21 lines
422 B
JSON
21 lines
422 B
JSON
{
|
|
"$schema": "https://ui.shadcn.com/schema.json",
|
|
"style": "new-york",
|
|
"rsc": false,
|
|
"tsx": true,
|
|
"tailwind": {
|
|
"config": "",
|
|
"css": "src/App.css",
|
|
"baseColor": "slate",
|
|
"cssVariables": true,
|
|
"prefix": ""
|
|
},
|
|
"aliases": {
|
|
"components": "@/components",
|
|
"utils": "@/lib/utils",
|
|
"ui": "@/components/ui",
|
|
"lib": "@/lib",
|
|
"hooks": "@/hooks"
|
|
},
|
|
"iconLibrary": "lucide"
|
|
}
|