// EEAT (Expertise, Experience, Authoritativeness, Trustworthiness) Component function createEEAT(options = {}) { const defaults = { author: { name: "Dr. María Elena Rodríguez", title: "Consultora Senior en Sistemas ERP", experience: "15+ años de experiencia en transformación digital", image: "/maria-elena-rodriguez.png" }, publishDate: "20 de julio de 2025", modifiedDate: null }; const settings = { ...defaults, ...options }; // Ensure image is always properly set - force global image for consistency if (settings.author) { // Always use the global María Elena Rodríguez image for consistency settings.author.image = "/maria-elena-rodriguez.png"; // If no name is provided, use default if (!settings.author.name) { settings.author.name = "Dr. María Elena Rodríguez"; } // If no title is provided, use default if (!settings.author.title) { settings.author.title = "Consultora Senior en Sistemas ERP"; } // If no experience is provided, use default if (!settings.author.experience) { settings.author.experience = "15+ años de experiencia en transformación digital"; } } return `