function mostrar_detalles_web_widget() {

    // Verifica si el usuario tiene permisos

    if (!current_user_can('edit_posts')) {

        return;

    }


    // Contenido del widget

    $contenido = '

    <div style="padding: 20px;">

        <div style="margin-top: 10px;">

            <img src="https://mechacomunicacion.com/wp-content/uploads/2024/09/LOGO-MECHA.svg" style="max-width: 70%; height: auto;">

            <p>⏳ <strong>Vencimiento del host</strong>: Expira el 31 de agosto de 2025</p>

            <p>🌐 <strong>Vencimiento del dominio</strong>: 14 de marzo de 2026</p>

            <p>🛠 <strong>Matenimiento preventivo</strong>: Se recomienda realizar el mantenimiento preventivo de forma mensual o, en su defecto, cada tres meses para prevenir problemas de funcionamiento y garantizar la seguridad del sitio web.</p>

            <p>📧 <strong>Soporte</strong>: <a href="mailto:carlos@tejada.com.ar">carlos@tejada.com.ar</a></p>

        </div>

    </div>';


    echo $contenido; // Mostrar el contenido

}


// Registro del widget en el dashboard

add_action('wp_dashboard_setup', function() {

    wp_add_dashboard_widget('detalles_web_widget', 'Detalles de la Web', 'mostrar_detalles_web_widget');

});