Zend certified PHP/Magento developer

because the “Hello World” module is not displayed magento 2.4.3

I am practicing with the development of mageplaza modules. following the steps of the blog, but I don’t know if my InstallData.php is badly created, but nothing is loaded to the database. I have the module created on github https://github.com/GNUXDAR/magento2_code/tree/development

<?php
namespace ActecnologyHellorWorldSetup;

use MagentoEavSetupEavSetup;
use MagentoEavSetupEavSetupFactory;
use MagentoFrameworkSetupInstallDataInterface;
use MagentoFrameworkSetupModuleContextInterface;
use MagentoFrameworkSetupModuleDataSetupInterface;

class InstallData implements InstallDataInterface
{
    private $eavSetupFactory;

    public function __construct(EavSetupFactory $eavSetupFactory)
    {
        $this->eavSetupFactory = $eavSetupFactory;
    }

    public function install(ModuleDataSetupInterface $setup, ModuleContextInterface $context)
    {
        /**
           * Install messages
           */
          $data = [
            'name'         => "Bienvenidos al mundo del desarrollo de modulos de Magento2",
            'url_key'      => '/magento-2-module-development/wellcome.html',
            'post_content' => "En este articulo de prueba, le damos la bienvenida al desarrollo de modulos e integracion de magento, como sabemos magento2 es un sistema modular, en el cual desarrollaremos modulos necesarios para nuestro modelo de negocio.",
            'tags'         => 'magento 2,development',
            'featured_image'=> 'https://arturocabrera.com/img/slides/1.webp',
            'author'        =>  "@gnuxdar",
            'status'       => 1
        ];
        foreach ($data as $bind) {
            $setup->getConnection()
              ->insertForce($setup->getTable('actecnology_helloworld_post'), $bind);
        }
    }
}