Hi Leonardo,
You can use this PHP code to create a shortcode, so you can use this shortcode [current_user_name] on your hero page.
// Define the shortcode function
function current_user_name_shortcode() {
$current_user = wp_get_current_user();
$user_name = $current_user->display_name;
return $user_name;
}
// Register the shortcode
add_shortcode( 'current_user_name', 'current_user_name_shortcode' );
Adding PHP: https://docs.generatepress.com/article/adding-php/