feat: restructure UI showcase with new sections and components

- Refactored `UIShowcaseClient` to utilize new section components: `ButtonsSection`, `BadgesSection`, `CardsSection`, `FormsSection`, `NavigationSection`, `FeedbackSection`, and `DataDisplaySection`.
- Removed redundant state management and imports, simplifying the component structure.
- Enhanced organization of UI components for improved usability and navigation within the showcase.
This commit is contained in:
Julien Froidefond
2025-09-30 23:04:10 +02:00
parent 785dc91159
commit 703145a791
9 changed files with 1161 additions and 1625 deletions

View File

@@ -0,0 +1,7 @@
export { ButtonsSection } from './ButtonsSection';
export { BadgesSection } from './BadgesSection';
export { CardsSection } from './CardsSection';
export { FormsSection } from './FormsSection';
export { NavigationSection } from './NavigationSection';
export { FeedbackSection } from './FeedbackSection';
export { DataDisplaySection } from './DataDisplaySection';