feat: add Input, Separator, Sheet, and Sidebar components

- Implemented Input component for user input fields.
- Created Separator component for visual separation in UI.
- Added Sheet component for modal-like overlays with customizable content.
- Developed Sidebar component with collapsible functionality and mobile responsiveness.
- Introduced Skeleton component for loading placeholders.
- Implemented Tooltip component for contextual hints.
- Updated global CSS variables for sidebar theming.
- Added useIsMobile hook for responsive design handling.
- Modified projects route to include ProjectSidebar.
- Enhanced Tailwind CSS configuration for improved styling.
- Updated Vite preload configuration for custom entry file naming.
This commit is contained in:
Roberto Musso
2026-02-19 18:44:13 +01:00
parent 30fde857f4
commit 1206a73db8
22 changed files with 3325 additions and 245 deletions

View File

@@ -23,9 +23,14 @@
/* Sidebar tokens — matching Figma exactly */
--sidebar: 0 0% 98%;
--sidebar-border: 0 0% 89.8%;
--sidebar-accent: 0 0% 96.1%;
--sidebar-foreground: 0 0% 25.1%;
--sidebar-border: 220 13% 91%;
--sidebar-accent: 240 4.8% 95.9%;
--sidebar-foreground: 240 5.3% 26.1%;
--sidebar-background: 0 0% 98%;
--sidebar-primary: 240 5.9% 10%;
--sidebar-primary-foreground: 0 0% 98%;
--sidebar-accent-foreground: 240 5.9% 10%;
--sidebar-ring: 217.2 91.2% 59.8%;
}
* {
@@ -47,4 +52,14 @@
display: flex;
overflow: hidden;
}
.dark {
--sidebar-background: 240 5.9% 10%;
--sidebar-foreground: 240 4.8% 95.9%;
--sidebar-primary: 224.3 76.3% 48%;
--sidebar-primary-foreground: 0 0% 100%;
--sidebar-accent: 240 3.7% 15.9%;
--sidebar-accent-foreground: 240 4.8% 95.9%;
--sidebar-border: 240 3.7% 15.9%;
--sidebar-ring: 217.2 91.2% 59.8%;
}
}