index.ts 589 B

12345678910111213141516171819202122232425
  1. /**
  2. * Components - Well-organized React components
  3. *
  4. * Structure:
  5. * - ui/ - Reusable UI primitives (shadcn/ui style)
  6. * - features/ - Feature-specific components
  7. * - layout/ - Layout and navigation components
  8. * - forms/ - Form components
  9. * - auth/ - Authentication components
  10. */
  11. // UI Components - Reusable primitives
  12. export * from './ui';
  13. // Feature Components - Business logic components
  14. export * from './features';
  15. // Layout Components
  16. export * from './layout';
  17. // Form Components
  18. export * from './forms';
  19. // Auth Components
  20. export * from './auth';