/** * Configuration for the page template component. */ export interface PageTemplateMetadata { /** Page title displayed in large header style */ pageTitle?: string; /** Page description (expandable text) */ pageDescription?: string; /** Show a back button at the bottom */ showBackButton?: boolean; /** Custom text for the back button (default: 'Back') */ backButtonText?: string; /** Character limit for description before expand (default: 180) */ descriptionLimit?: number; /** Text color for the description (default: 'dark') */ descriptionColor?: string; }