feat: add example components and system pages for UI showcase

- Introduced HeaderExample component for header display.
- Created StyleGuideOne, StyleGuideTwo, and StyleGuideThree components showcasing various UI elements and layouts.
- Added system pages: ComingSoon, Forbidden, Maintenance, and NotFound for better user experience during different states.
- Updated index.ts to export new components for easier access.
This commit is contained in:
Firman Ramdhani
2026-01-19 16:04:07 +07:00
parent 2313284aab
commit 23c869e574
15 changed files with 838 additions and 14 deletions
+14 -5
View File
@@ -1,5 +1,14 @@
export * from './header';
export * from './counter';
export * from './date-example';
export * from './encryption-demo';
export * from './button';
export * from './examples/header-example';
export * from './examples/counter-example';
export * from './examples/date-example';
export * from './examples/encryption-example';
export * from './examples/style-guide-1';
export * from './examples/style-guide-2';
export * from './examples/style-guide-3';
export * from './system-pages/coming-soon';
export * from './system-pages/forbidden';
export * from './system-pages/maintenance';
export * from './system-pages/not-found';
export * from './button/button';