- Updated various components to use consistent color tokens, improving visual coherence. - Refactored layout components to utilize the new PublicShell for better structure. - Enhanced error and status messaging styles for improved user feedback. - Standardized button usage across forms and modals for a unified interaction experience. - Introduced new UI design tokens and guidelines in documentation to support future development.
14 lines
478 B
TypeScript
14 lines
478 B
TypeScript
/**
|
|
* Template Components (Page-level layouts)
|
|
* High-level page templates that define overall page structure
|
|
*/
|
|
|
|
export { AuthLayout } from "./AuthLayout/AuthLayout";
|
|
export type { AuthLayoutProps } from "./AuthLayout/AuthLayout";
|
|
|
|
export { PageLayout } from "./PageLayout/PageLayout";
|
|
export type { BreadcrumbItem } from "./PageLayout/PageLayout";
|
|
|
|
export { PublicShell } from "./PublicShell/PublicShell";
|
|
export type { PublicShellProps } from "./PublicShell/PublicShell";
|