/** * Components - Well-organized React components * * Structure: * - ui/ - Reusable UI primitives (shadcn/ui style) * - features/ - Feature-specific components * - layout/ - Layout and navigation components * - forms/ - Form components * - auth/ - Authentication components */ // UI Components - Reusable primitives export * from './ui'; // Feature Components - Business logic components export * from './features'; // Layout Components export * from './layout'; // Form Components export * from './forms'; // Auth Components export * from './auth';