- Initialize shadcn/ui configuration and dependencies - Refactor Button component to wrap shadcn/ui button while maintaining backward compatibility - Replace custom Modal implementation with shadcn/ui Dialog components - Upgrade ConfirmDialog to use shadcn/ui AlertDialog for better accessibility - Apply Card layout components to ExtractorPage and CleanerPage for a modern look Co-authored-by: luwamgere15-crypto <255338376+luwamgere15-crypto@users.noreply.github.com>
22 lines
536 B
JSON
22 lines
536 B
JSON
{
|
|
"$schema": "https://ui.shadcn.com/schema.json",
|
|
"style": "new-york",
|
|
"rsc": false,
|
|
"tsx": true,
|
|
"tailwind": {
|
|
"config": "tailwind.config.js",
|
|
"css": "src/renderer/src/assets/main.css",
|
|
"baseColor": "slate",
|
|
"cssVariables": true,
|
|
"prefix": ""
|
|
},
|
|
"aliases": {
|
|
"components": "src/renderer/src/components",
|
|
"utils": "src/renderer/src/lib/utils",
|
|
"ui": "src/renderer/src/components/ui",
|
|
"lib": "src/renderer/src/lib",
|
|
"hooks": "src/renderer/src/hooks"
|
|
},
|
|
"iconLibrary": "lucide"
|
|
}
|