package components // ConfigSectionData represents data for a configuration section type ConfigSectionData struct { Title string Icon string Description string Fields []interface{} // Will hold field data structures } // InfoSectionData represents data for an informational section type InfoSectionData struct { Title string Icon string Type string // "info", "warning", "success", "danger" Content string } // ConfigSection renders a Bootstrap card for configuration settings templ ConfigSection(data ConfigSectionData) {