+ { + page.sections && page.sections.length > 0 ? ( + page.sections.map((section: any) => { + const Component = ComponentRegistry[section.type] || FallbackSection; + + // Löse Platzhalter & DB-Bindings aus /admin/ live auf + const resolvedSettings = resolveDynamicData( + section.settings || {}, + section.dynamic_bindings || {}, + siteConfig + ); + + return ; + }) + ) : ( + + ) + } +