{"id":2379,"date":"2025-04-29T14:57:51","date_gmt":"2025-04-29T14:57:51","guid":{"rendered":"https:\/\/uki.hubexo.com\/?page_id=2379"},"modified":"2025-07-16T09:51:46","modified_gmt":"2025-07-16T09:51:46","slug":"our-people","status":"publish","type":"page","link":"https:\/\/uki.hubexo.com\/vi\/about\/our-people\/","title":{"rendered":"Our people"},"content":{"rendered":"<script>\n    document.addEventListener('DOMContentLoaded', function() {\n        \/\/ Get the filter buttons\n        const executiveTeamBtn = document.getElementById('executiveTeam');\n        const managementBtn = document.getElementById('regionalManagement');\n\n        \/\/ Get all team items\n        const teamItems = document.querySelectorAll('.team-item');\n\n        \/\/ Set Group Management as active by default when page loads\n        executiveTeamBtn.classList.add('active');\n\n        \/\/ Hide Management items by default\n        teamItems.forEach(function(item) {\n            if (item.getAttribute('data-management') === 'regionalManagement') {\n                item.classList.add('hide');\n            }\n        });\n\n        \/\/ Add click event listener to Group Management button\n        executiveTeamBtn.addEventListener('click', function() {\n            \/\/ First, remove active class if we want to style the active button\n            managementBtn.classList.remove('active');\n            executiveTeamBtn.classList.add('active');\n\n            \/\/ Loop through all team items\n            teamItems.forEach(function(item) {\n                \/\/ If item has Management data attribute, hide it\n                if (item.getAttribute('data-management') === 'regionalManagement') {\n                    item.classList.add('hide');\n                }\n                \/\/ If item has executiveTeam data attribute, show it\n                else if (item.getAttribute('data-management') === 'executiveTeam') {\n                    item.classList.remove('hide');\n                }\n                \/\/ Items without data-management attribute remain visible by default\n            });\n        });\n\n        \/\/ Add click event listener to Management button\n        managementBtn.addEventListener('click', function() {\n            \/\/ Update active class\n            executiveTeamBtn.classList.remove('active');\n            managementBtn.classList.add('active');\n\n            \/\/ Loop through all team items\n            teamItems.forEach(function(item) {\n                \/\/ If item has executiveTeam data attribute, hide it\n                if (item.getAttribute('data-management') === 'executiveTeam') {\n                    item.classList.add('hide');\n                }\n                \/\/ If item has Management data attribute, show it\n                else if (item.getAttribute('data-management') === 'regionalManagement') {\n                    item.classList.remove('hide');\n                }\n                \/\/ Items without data-management attribute remain visible by default\n            });\n        });\n\n        \/\/ Create a container for the expanded detail content\n        const detailContainer = document.createElement('div');\n        detailContainer.className = 'expanded-detail-container';\n        document.querySelector('.block-teams').appendChild(detailContainer);\n\n        \/\/ Track the currently active team item\n        let activeTeamItem = null;\n\n        \/\/ Add click event listeners to all View Profile buttons\n        const viewButtons = document.querySelectorAll('.view-btn');\n        viewButtons.forEach(function(button) {\n            button.addEventListener('click', function(event) {\n                \/\/ Prevent default link behavior\n                event.preventDefault();\n\n                \/\/ Find the parent team-item\n                const teamItem = this.closest('.team-item');\n\n                \/\/ Find the detail-content within this team-item\n                const detailContent = teamItem.querySelector('.detail-content');\n\n                \/\/ Check if clicking the same item or a new one\n                const isCurrentlyActive = teamItem === activeTeamItem;\n\n                \/\/ Reset previously active team item\n                if (activeTeamItem && activeTeamItem !== teamItem) {\n                    \/\/ No need to remove active class as we're not adding it anymore\n                }\n\n                \/\/ Toggle visibility of expanded container\n                if (isCurrentlyActive) {\n                    \/\/ If clicking the active item, hide the expanded content\n                    detailContainer.style.display = 'none';\n                    activeTeamItem = null;\n                } else {\n                    \/\/ Set this as the active team item\n                    activeTeamItem = teamItem;\n\n                    \/\/ Get the position of the team item for positioning the expanded content\n                    const teamItemRect = teamItem.getBoundingClientRect();\n                    const containerRect = document.querySelector('.block-teams').getBoundingClientRect();\n\n                    \/\/ Clone the detail content for display in the expanded container\n                    const detailClone = detailContent.cloneNode(true);\n                    detailClone.classList.add('expanded');\n\n                    \/\/ Clear previous expanded content\n                    detailContainer.innerHTML = '';\n                    detailContainer.appendChild(detailClone);\n\n                    \/\/ Position the expanded container\n                    detailContainer.style.display = 'block';\n                    detailContainer.style.top = (teamItemRect.bottom - containerRect.top) + 'px';\n\n                    \/\/ Add close button to the expanded detail\n                    const closeButton = document.createElement('button');\n                    closeButton.className = 'close-detail-btn';\n                    closeButton.innerHTML = '&times;';\n                    closeButton.addEventListener('click', function(e) {\n                        e.stopPropagation();\n                        detailContainer.style.display = 'none';\n                        activeTeamItem = null;\n                    });\n                    detailClone.appendChild(closeButton);\n                }\n\n                \/\/ Stop event propagation to prevent immediate closing\n                event.stopPropagation();\n            });\n        });\n\n        \/\/ Add hover and click event listeners to all img-content elements\n        const imgContents = document.querySelectorAll('.img-content');\n        imgContents.forEach(function(imgContent) {\n            \/\/ Find the front-content within the same team-item\n            const frontContent = imgContent.closest('.team-item').querySelector('.front-content');\n\n            \/\/ Add mouseenter event (hover in)\n            imgContent.addEventListener('mouseenter', function() {\n                if (!frontContent.classList.contains('clicked')) {\n                    frontContent.classList.add('active');\n                }\n            });\n\n            \/\/ Add mouseleave event (hover out)\n            imgContent.addEventListener('mouseleave', function() {\n                \/\/ Only remove active if it wasn't activated by click\n                if (!frontContent.classList.contains('clicked')) {\n                    frontContent.classList.remove('active');\n                }\n            });\n\n            \/\/ Add click event for toggle functionality - FIXED VERSION\n            imgContent.addEventListener('click', function() {\n                \/\/ If already clicked, remove both classes\n                if (frontContent.classList.contains('clicked')) {\n                    frontContent.classList.remove('clicked');\n                    frontContent.classList.remove('active');\n                } else {\n                    \/\/ Otherwise, add both classes\n                    frontContent.classList.add('active');\n                    frontContent.classList.add('clicked');\n                }\n            });\n        });\n\n        \/\/ Close expanded detail when clicking outside\n        document.addEventListener('click', function(event) {\n            \/\/ Check if the click is outside both the team items and the expanded container\n            const isOutsideTeamItems = !event.target.closest('.team-item');\n            const isOutsideExpandedDetail = !event.target.closest('.expanded-detail-container');\n\n            if (isOutsideTeamItems && isOutsideExpandedDetail) {\n                \/\/ Hide the expanded container\n                detailContainer.style.display = 'none';\n                activeTeamItem = null;\n            }\n        });\n\n        \/\/ Optional: Add CSS for the necessary styles\n        if (!document.querySelector('style#team-filter-styles')) {\n            const style = document.createElement('style');\n            style.id = 'team-filter-styles';\n            style.textContent = `\n            .hide {\n                display: none !important;\n            }\n\n            \/* Optional: Style for active buttons *\/\n            .position-teams p.active {\n                font-weight: bold;\n                text-decoration: none;\n            }\n\n            \/* Default state for original detail content - keep completely hidden *\/\n            .detail-content {\n                display: none;\n            }\n\n            \/* Container for the expanded detail *\/\n            .expanded-detail-container {\n                display: none;\n                position: absolute;\n                left: 0;\n                width: 100%;\n                z-index: 100;\n                background: var(--earth);\n                box-shadow: 0 4px 8px rgba(0,0,0,0.1);\n                padding: 20px;\n                box-sizing: border-box;\n                top: 0px !important;\n                z-index: 10000;\n                width: 100%;\n                margin-left: auto;\n                margin-right: auto;\n                right: 0;\n                height: 100%;\n                overflow: scroll;\n            }\n\n            \/* Expanded detail inside the container *\/\n            .detail-content.expanded {\n                display: block;\n                position: relative;\n                max-width: 1200px;\n                margin: 0 auto;\n            }\n\n            \/* Close button for the expanded detail *\/\n            .close-detail-btn {\n                position: absolute;\n                top: -4px;\n                right: 10px;\n                background: transparent;\n                border: none;\n                font-size: 24px;\n                cursor: pointer;\n                width: 30px;\n                height: 30px;\n                display: flex;\n                align-items: center;\n                justify-content: center;\n                color: #333;\n            }\n\n            .close-detail-btn:hover {\n                color: #000;\n            }\n        `;\n            document.head.appendChild(style);\n        }\n    });\n<\/script>\n\n<div id=\"\" class=\"content-panel team aluminium-bg\" data-country=\"\">\n    <div class=\"container fade-in\">\n        <div class=\"teams-section\">\n            <h2 class=\"h5 snug\">Our people<\/h2>\n            <div class=\"block-teams\">\n                <div class=\"position-teams\">\n                    <p class=\"\" id=\"executiveTeam\">Executive Team<\/p>\n                    <p class=\"\" id=\"regionalManagement\">Regional Management<\/p>\n                <\/div>\n                <div class=\"list-teams\">\n\n                                            <div class=\"team-member team-item grid-item fade-in\" data-country=\"\" data-management=\"\">\n                            <div class=\"team-member--meta\">\n                                <div class=\"team-member--title\">\n                                    <h3 class=\"small-title--bold snug\">Dario Aganovic<\/h3>\n                                    <p class=\"snug\">CEO &#038; President, West Europe (Interim)<\/p>\n\n                                    <div class=\"social-media\">\n                                                                            <\/div>\n\n                                <\/div>\n                                <div class=\"team-member--image\">\n                                                                            <img decoding=\"async\" src=\"https:\/\/uki.hubexo.com\/wp-content\/uploads\/2024\/09\/Dario2-150x150.jpg\" alt=\"Dario Aganovic\">\n                                                                    <\/div>\n                            <\/div>\n                                                            <div class=\"team-member--bio snug-child\">\n                                    <p>Since I joined the business as CEO in 2022, I\u2019ve been committed to fostering a culture where our people are at the heart of everything we do. I make it a priority to visit all our global offices, so that all our colleagues are connected as one global team with our mission, vision and values. With more than 25 years of experience spanning mechanical engineering, robotics, sales, and healthcare, my diverse background gives me a unique perspective on leadership and innovation.<\/p>\n<p>When I\u2019m not meeting our amazing Hubexo colleagues all over the world, I love diving into British crime series, exploring classic hip-hop, and discovering new vegetarian dishes from around the world.<\/p>\n                                <\/div>\n                                <button class=\"team-member--button\">\n                                    <span class=\"button--text\">Show more<\/span>\n                                    <svg width=\"16\" height=\"20\" viewbox=\"0 0 16 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<path d=\"M8 0.953193L8 15.8701\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<path d=\"M0.615385 12.0304C4.67692 12.0304 8 15.3535 8 19.415\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<path d=\"M15.3828 12.0304C11.3213 12.0304 7.9982 15.3535 7.9982 19.415\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<\/svg>                                <\/button>\n                                                                                                                <div class=\"team-member--email\">\n                                                            <\/div>\n                        <\/div>\n                                            <div class=\"team-member team-item grid-item fade-in\" data-country=\"\" data-management=\"\">\n                            <div class=\"team-member--meta\">\n                                <div class=\"team-member--title\">\n                                    <h3 class=\"small-title--bold snug\">Joanne Keit<\/h3>\n                                    <p class=\"snug\">President, UK and Ireland<\/p>\n\n                                    <div class=\"social-media\">\n                                                                            <\/div>\n\n                                <\/div>\n                                <div class=\"team-member--image\">\n                                                                            <img decoding=\"async\" src=\"https:\/\/uki.hubexo.com\/wp-content\/uploads\/2024\/09\/Jo-150x150.jpg\" alt=\"Joanne Keit\">\n                                                                    <\/div>\n                            <\/div>\n                                                            <div class=\"team-member--bio snug-child\">\n                                    <p>At the helm of Hubexo\u2019s UK &#038; Ireland commercial teams, I ignite a passion for delivering unparalleled customer value. With 16 years of experience, I\u2019m driven by a deep commitment to customer experience, innovation, and growth. My journey through sales, account management, and strategy has always centered on elevating the customer experience. Hubexo is more than just a workplace; it\u2019s a community where we push boundaries and celebrate success together. My vision is to set new industry benchmarks and lead with a spirit of excellence.<\/p>\n<p>Beyond work, you\u2019ll find me paddleboarding or baking, depending on the weather. I also love exploring the UK\u2019s south coast with my Goldendoodle, Ralph, or teaching myself new skills. <\/p>\n                                <\/div>\n                                <button class=\"team-member--button\">\n                                    <span class=\"button--text\">Show more<\/span>\n                                    <svg width=\"16\" height=\"20\" viewbox=\"0 0 16 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<path d=\"M8 0.953193L8 15.8701\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<path d=\"M0.615385 12.0304C4.67692 12.0304 8 15.3535 8 19.415\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<path d=\"M15.3828 12.0304C11.3213 12.0304 7.9982 15.3535 7.9982 19.415\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<\/svg>                                <\/button>\n                                                                                                                <div class=\"team-member--email\">\n                                                            <\/div>\n                        <\/div>\n                                            <div class=\"team-member team-item grid-item fade-in\" data-country=\"\" data-management=\"\">\n                            <div class=\"team-member--meta\">\n                                <div class=\"team-member--title\">\n                                    <h3 class=\"small-title--bold snug\">Joakim Percival<\/h3>\n                                    <p class=\"snug\">Chief Product Officer<\/p>\n\n                                    <div class=\"social-media\">\n                                                                            <\/div>\n\n                                <\/div>\n                                <div class=\"team-member--image\">\n                                                                            <img decoding=\"async\" src=\"https:\/\/uki.hubexo.com\/wp-content\/uploads\/2024\/09\/Joakim-150x150.jpg\" alt=\"Joakim Percival\">\n                                                                    <\/div>\n                            <\/div>\n                                                            <div class=\"team-member--bio snug-child\">\n                                    <p>As Chief Product Officer, I\u2019m on a mission to revolutionize the construction industry with cutting-edge products that empower our customers to build smarter and more sustainably. My global journey\u2014from engineering to top-level leadership\u2014has shaped my passion for technology and innovation. I\u2019m particularly focused on helping the construction ecosystem tackle its sustainability challenges, driving real, impactful change through our products. Hubexo offers a unique platform to make this vision a reality, and I\u2019m excited to be part of it.\u00a0\u00a0<\/p>\n<p>Outside of work, I consider myself a collector of experiences; traveling, and anything science or fantasy related in books, movies, TV or video games. Being a father of two is also a great experience of course, mostly.<\/p>\n                                <\/div>\n                                <button class=\"team-member--button\">\n                                    <span class=\"button--text\">Show more<\/span>\n                                    <svg width=\"16\" height=\"20\" viewbox=\"0 0 16 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<path d=\"M8 0.953193L8 15.8701\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<path d=\"M0.615385 12.0304C4.67692 12.0304 8 15.3535 8 19.415\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<path d=\"M15.3828 12.0304C11.3213 12.0304 7.9982 15.3535 7.9982 19.415\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<\/svg>                                <\/button>\n                                                                                                                <div class=\"team-member--email\">\n                                                            <\/div>\n                        <\/div>\n                                            <div class=\"team-member team-item grid-item fade-in\" data-country=\"\" data-management=\"\">\n                            <div class=\"team-member--meta\">\n                                <div class=\"team-member--title\">\n                                    <h3 class=\"small-title--bold snug\">Lars Ryding<\/h3>\n                                    <p class=\"snug\">Chief Operating Officer<\/p>\n\n                                    <div class=\"social-media\">\n                                                                            <\/div>\n\n                                <\/div>\n                                <div class=\"team-member--image\">\n                                                                            <img decoding=\"async\" src=\"https:\/\/uki.hubexo.com\/wp-content\/uploads\/2024\/09\/Lars-150x150.jpg\" alt=\"Lars Ryding\">\n                                                                    <\/div>\n                            <\/div>\n                                                            <div class=\"team-member--bio snug-child\">\n                                    <p>As Chief Operating Officer, I lead our teams in Tech Delivery, Research and Technical Content, Solution Architecture, and Group IT, all in the pursuit of operational excellence. With 25 years of experience in IT leadership across the pharmaceutical and MedTech industries, I\u2019m passionate about harnessing global talent to create state-of-the-art software solutions driven by deep customer insights. My goal is to combine our collective strengths to develop solutions that truly make a difference. <\/p>\n<p>Outside of work, I enjoy quality time with my wife and three children, especially at our summer house on \u00d6land. You might also find me running, skiing, or riding my motorcycle.<\/p>\n                                <\/div>\n                                <button class=\"team-member--button\">\n                                    <span class=\"button--text\">Show more<\/span>\n                                    <svg width=\"16\" height=\"20\" viewbox=\"0 0 16 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<path d=\"M8 0.953193L8 15.8701\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<path d=\"M0.615385 12.0304C4.67692 12.0304 8 15.3535 8 19.415\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<path d=\"M15.3828 12.0304C11.3213 12.0304 7.9982 15.3535 7.9982 19.415\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<\/svg>                                <\/button>\n                                                                                                                <div class=\"team-member--email\">\n                                                            <\/div>\n                        <\/div>\n                                            <div class=\"team-member team-item grid-item fade-in\" data-country=\"\" data-management=\"\">\n                            <div class=\"team-member--meta\">\n                                <div class=\"team-member--title\">\n                                    <h3 class=\"small-title--bold snug\">Miguel Sobral<\/h3>\n                                    <p class=\"snug\">Chief Strategy Officer<\/p>\n\n                                    <div class=\"social-media\">\n                                                                            <\/div>\n\n                                <\/div>\n                                <div class=\"team-member--image\">\n                                                                            <img decoding=\"async\" src=\"https:\/\/uki.hubexo.com\/wp-content\/uploads\/2024\/09\/Miguel-150x150.jpg\" alt=\"Miguel Sobral\">\n                                                                    <\/div>\n                            <\/div>\n                                                            <div class=\"team-member--bio snug-child\">\n                                    <p>As Chief Strategy Officer, I\u2019m at the forefront of Hubexo\u2019s strategic direction, turning bold visions into reality through transformative growth initiatives. My background in B2B and B2G SaaS fuels my passion for driving innovation and leading the charge in the construction industry\u2019s digital revolution. My goal is to position Hubexo as an unstoppable force globally. I\u2019m particularly excited about the opportunity to consolidate our market presence and expand our solutions portfolio through strategic partnerships and acquisitions.\u00a0\u00a0<\/p>\n<p>Outside the office, you can find me sailing the seas, experimenting with Mediterranean cuisine, or sharpening my skills on the padel court.<\/p>\n                                <\/div>\n                                <button class=\"team-member--button\">\n                                    <span class=\"button--text\">Show more<\/span>\n                                    <svg width=\"16\" height=\"20\" viewbox=\"0 0 16 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<path d=\"M8 0.953193L8 15.8701\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<path d=\"M0.615385 12.0304C4.67692 12.0304 8 15.3535 8 19.415\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<path d=\"M15.3828 12.0304C11.3213 12.0304 7.9982 15.3535 7.9982 19.415\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<\/svg>                                <\/button>\n                                                                                                                <div class=\"team-member--email\">\n                                                            <\/div>\n                        <\/div>\n                                            <div class=\"team-member team-item grid-item fade-in\" data-country=\"\" data-management=\"\">\n                            <div class=\"team-member--meta\">\n                                <div class=\"team-member--title\">\n                                    <h3 class=\"small-title--bold snug\">Helen Frame<\/h3>\n                                    <p class=\"snug\">VP, Specification &#038; Product Information<\/p>\n\n                                    <div class=\"social-media\">\n                                                                            <\/div>\n\n                                <\/div>\n                                <div class=\"team-member--image\">\n                                                                            <img decoding=\"async\" src=\"https:\/\/uki.hubexo.com\/wp-content\/uploads\/2025\/04\/helen-frame-1-600px-2022-1.jpg\" alt=\"\">\n                                                                    <\/div>\n                            <\/div>\n                                                            <div class=\"team-member--bio snug-child\">\n                                    <p>As VP of Product at Hubexo, I lead the vision, strategy, and delivery of products across our global portfolio for Specification and Product Information. My focus is on ensuring everything we create aligns with business goals and delivers real value to our customers.<\/p>\n<p>I played a key role in transitioning NBS products into modern SaaS offerings, including NBS Chorus and Source, helping to redefine how the construction industry works with specification and product information.<\/p>\n<p>Before joining NBS, I spent over a decade at Sage, managing multi-channel product portfolios with revenues exceeding \u00a320 million. My experience spans B2B software, go-to-market strategy, and large-scale product leadership.<\/p>\n<p>Outside of work, you\u2019ll most likely find me out on a run or enjoying time with my family -preferably both.<\/p>\n                                <\/div>\n                                <button class=\"team-member--button\">\n                                    <span class=\"button--text\">Show more<\/span>\n                                    <svg width=\"16\" height=\"20\" viewbox=\"0 0 16 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<path d=\"M8 0.953193L8 15.8701\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<path d=\"M0.615385 12.0304C4.67692 12.0304 8 15.3535 8 19.415\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<path d=\"M15.3828 12.0304C11.3213 12.0304 7.9982 15.3535 7.9982 19.415\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<\/svg>                                <\/button>\n                                                                                                                <div class=\"team-member--email\">\n                                                            <\/div>\n                        <\/div>\n                                            <div class=\"team-member team-item grid-item fade-in\" data-country=\"\" data-management=\"\">\n                            <div class=\"team-member--meta\">\n                                <div class=\"team-member--title\">\n                                    <h3 class=\"small-title--bold snug\">Stephen Hamil<\/h3>\n                                    <p class=\"snug\">Innovation Director<\/p>\n\n                                    <div class=\"social-media\">\n                                                                            <\/div>\n\n                                <\/div>\n                                <div class=\"team-member--image\">\n                                                                            <img decoding=\"async\" src=\"https:\/\/uki.hubexo.com\/wp-content\/uploads\/2025\/04\/stephen-hamil-3-600px-1.jpg\" alt=\"\">\n                                                                    <\/div>\n                            <\/div>\n                                                            <div class=\"team-member--bio snug-child\">\n                                    <p>As Innovation Director at Hubexo, I work on all major software developments, helping to shape the future of our products and services. I first started working on NBS products in 1999 and have been involved in all the major NBS software developments since.<\/p>\n<p>I was project lead for the UK Government\u2019s digital plan of work and the classification \u2018pillar\u2019 of the Level 2 BIM framework. I\u2019ve also contributed to the development of UK Building Regulations and participated in European and British Standards committees, helping to drive innovation and best practice across the industry.<\/p>\n<p>Outside of work, I\u2019m a keen runner, competing at club level in races ranging from 1500m up to marathons.<\/p>\n                                <\/div>\n                                <button class=\"team-member--button\">\n                                    <span class=\"button--text\">Show more<\/span>\n                                    <svg width=\"16\" height=\"20\" viewbox=\"0 0 16 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<path d=\"M8 0.953193L8 15.8701\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<path d=\"M0.615385 12.0304C4.67692 12.0304 8 15.3535 8 19.415\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<path d=\"M15.3828 12.0304C11.3213 12.0304 7.9982 15.3535 7.9982 19.415\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<\/svg>                                <\/button>\n                                                                                                                <div class=\"team-member--email\">\n                                                            <\/div>\n                        <\/div>\n                                            <div class=\"team-member team-item grid-item fade-in\" data-country=\"\" data-management=\"\">\n                            <div class=\"team-member--meta\">\n                                <div class=\"team-member--title\">\n                                    <h3 class=\"small-title--bold snug\">Phil Scott<\/h3>\n                                    <p class=\"snug\">VP, Technology Delivery<\/p>\n\n                                    <div class=\"social-media\">\n                                                                            <\/div>\n\n                                <\/div>\n                                <div class=\"team-member--image\">\n                                                                            <img decoding=\"async\" src=\"https:\/\/uki.hubexo.com\/wp-content\/uploads\/2025\/04\/phil-scott-1-600px-2022jpg.jpg\" alt=\"\">\n                                                                    <\/div>\n                            <\/div>\n                                                            <div class=\"team-member--bio snug-child\">\n                                    <p>I am the VP of Technology Delivery at Hubexo where I lead Software Engineering teams dispersed around the world. My focus involves building the environment for high performing teams to thrive. We build leading SaaS solutions for the construction industry.<\/p>\n<p>My experience in private equity, and public organisations mixed with Quality Assurance &#038; Software Engineering skills means I am well placed to optimise practices and pre-empt problems to help teams align to deliver commercial &#038; strategic objectives.<\/p>\n<p>Beyond professional life I found my passion for overcoming problems and challenges by setting up my holiday rental business and hiking the world&#8217;s biggest mountains in Asia, Europe, and South America.<\/p>\n                                <\/div>\n                                <button class=\"team-member--button\">\n                                    <span class=\"button--text\">Show more<\/span>\n                                    <svg width=\"16\" height=\"20\" viewbox=\"0 0 16 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<path d=\"M8 0.953193L8 15.8701\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<path d=\"M0.615385 12.0304C4.67692 12.0304 8 15.3535 8 19.415\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<path d=\"M15.3828 12.0304C11.3213 12.0304 7.9982 15.3535 7.9982 19.415\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<\/svg>                                <\/button>\n                                                                                                                <div class=\"team-member--email\">\n                                                            <\/div>\n                        <\/div>\n                                            <div class=\"team-member team-item grid-item fade-in\" data-country=\"\" data-management=\"\">\n                            <div class=\"team-member--meta\">\n                                <div class=\"team-member--title\">\n                                    <h3 class=\"small-title--bold snug\">Gareth Morgan<\/h3>\n                                    <p class=\"snug\">VP, Sales Retention<\/p>\n\n                                    <div class=\"social-media\">\n                                                                            <\/div>\n\n                                <\/div>\n                                <div class=\"team-member--image\">\n                                                                            <img decoding=\"async\" src=\"https:\/\/uki.hubexo.com\/wp-content\/uploads\/2025\/04\/gareth-morgan-1-600-1.jpg\" alt=\"\">\n                                                                    <\/div>\n                            <\/div>\n                                                            <div class=\"team-member--bio snug-child\">\n                                    <p>As Vice President of Retention at Hubexo, I help architects, specifiers, and construction professionals discover smarter, more efficient ways to work through NBS.<\/p>\n<p>With over 20 years of experience in sales and a strong background in the construction industry, I\u2019ve progressed through roles from Field Account Manager to Sales Director \u2014 always focused on building strong relationships, solving real-world challenges, and helping customers maximise the value of innovative specification tools.<\/p>\n<p>I\u2019m known for a consultative, down-to-earth approach, and I\u2019m passionate about ensuring our customers get real, lasting value from the solutions we offer.<\/p>\n                                <\/div>\n                                <button class=\"team-member--button\">\n                                    <span class=\"button--text\">Show more<\/span>\n                                    <svg width=\"16\" height=\"20\" viewbox=\"0 0 16 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<path d=\"M8 0.953193L8 15.8701\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<path d=\"M0.615385 12.0304C4.67692 12.0304 8 15.3535 8 19.415\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<path d=\"M15.3828 12.0304C11.3213 12.0304 7.9982 15.3535 7.9982 19.415\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<\/svg>                                <\/button>\n                                                                                                                <div class=\"team-member--email\">\n                                                            <\/div>\n                        <\/div>\n                                            <div class=\"team-member team-item grid-item fade-in\" data-country=\"\" data-management=\"\">\n                            <div class=\"team-member--meta\">\n                                <div class=\"team-member--title\">\n                                    <h3 class=\"small-title--bold snug\">Louise Urwin<\/h3>\n                                    <p class=\"snug\">People and Culture Manager<\/p>\n\n                                    <div class=\"social-media\">\n                                                                            <\/div>\n\n                                <\/div>\n                                <div class=\"team-member--image\">\n                                                                            <img decoding=\"async\" src=\"https:\/\/uki.hubexo.com\/wp-content\/uploads\/2025\/04\/Louise-Urwin-1.jpg\" alt=\"\">\n                                                                    <\/div>\n                            <\/div>\n                                                            <div class=\"team-member--bio snug-child\">\n                                    <p>As People &#038; Culture Manager for the UK and Ireland at Hubexo, I\u2019m proud to lead a fantastic team and provide leadership support to colleagues across the region.<\/p>\n<p>With over 20 years of experience in People &#038; Culture roles, I was excited to join Hubexo and take on the opportunity to drive the People agenda, build our UKI Talent Team, and champion our values. Since joining seven months ago, I\u2019ve helped launch our first Ethics Committee \u2014 a safe space for colleagues to raise concerns &#8211; and expanded our Talent Team to now support North East Europe, something I\u2019m incredibly proud of.<\/p>\n<p>I\u2019m deeply passionate about creating an exceptional employee experience. Our people are the heart of our business and its greatest asset. At Hubexo, I\u2019m committed to fostering a culture where every individual feels valued, inspired, and empowered to succeed.<\/p>\n<p>Outside of work, I enjoy reading, walking my dogs, and cooking. Most weekends you\u2019ll find me spending time with my two sons &#8211; often cheering on our local ice hockey club, the Whitley Warriors.<\/p>\n                                <\/div>\n                                <button class=\"team-member--button\">\n                                    <span class=\"button--text\">Show more<\/span>\n                                    <svg width=\"16\" height=\"20\" viewbox=\"0 0 16 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<path d=\"M8 0.953193L8 15.8701\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<path d=\"M0.615385 12.0304C4.67692 12.0304 8 15.3535 8 19.415\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<path d=\"M15.3828 12.0304C11.3213 12.0304 7.9982 15.3535 7.9982 19.415\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<\/svg>                                <\/button>\n                                                                                                                <div class=\"team-member--email\">\n                                                            <\/div>\n                        <\/div>\n                                            <div class=\"team-member team-item grid-item fade-in\" data-country=\"\" data-management=\"\">\n                            <div class=\"team-member--meta\">\n                                <div class=\"team-member--title\">\n                                    <h3 class=\"small-title--bold snug\">Paul Davison<\/h3>\n                                    <p class=\"snug\">VP, Information Technology<\/p>\n\n                                    <div class=\"social-media\">\n                                                                            <\/div>\n\n                                <\/div>\n                                <div class=\"team-member--image\">\n                                                                            <img decoding=\"async\" src=\"https:\/\/uki.hubexo.com\/wp-content\/uploads\/2025\/04\/paul-davison-1-600px.jpg\" alt=\"\">\n                                                                    <\/div>\n                            <\/div>\n                                                            <div class=\"team-member--bio snug-child\">\n                                    <p>As VP of IT at Hubexo, I lead strategic initiatives that transform legacy systems into unified, scalable technology platforms. I oversee global integration of CRM, ERP, and Microsoft solutions to improve efficiency, while championing innovation through AI, predictive analytics, and automation to drive faster decision-making.<\/p>\n<p>With over 25 years&#8217; experience across sectors including oil and gas, heavy industry, finance, telecommunications, and construction, I\u2019ve worked alongside incredible teams on projects that deliver real impact. Career highlights include building highly motivated IT teams and delivering secure mobile voice integration for a Tier-1 bank during the pandemic.<\/p>\n<p>I\u2019m passionate about mentorship and supporting emerging IT talent, and I stay continuously curious about the future of technology. Outside of work, I enjoy greenlaning and touring across the UK with my two sons \u2014 both avid motocross riders who\u2019ve got me into the sport too.<\/p>\n                                <\/div>\n                                <button class=\"team-member--button\">\n                                    <span class=\"button--text\">Show more<\/span>\n                                    <svg width=\"16\" height=\"20\" viewbox=\"0 0 16 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<path d=\"M8 0.953193L8 15.8701\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<path d=\"M0.615385 12.0304C4.67692 12.0304 8 15.3535 8 19.415\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<path d=\"M15.3828 12.0304C11.3213 12.0304 7.9982 15.3535 7.9982 19.415\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<\/svg>                                <\/button>\n                                                                                                                <div class=\"team-member--email\">\n                                                            <\/div>\n                        <\/div>\n                                            <div class=\"team-member team-item grid-item fade-in\" data-country=\"\" data-management=\"\">\n                            <div class=\"team-member--meta\">\n                                <div class=\"team-member--title\">\n                                    <h3 class=\"small-title--bold snug\">Dave Thompson<\/h3>\n                                    <p class=\"snug\">VP, Sales, Retention<\/p>\n\n                                    <div class=\"social-media\">\n                                                                            <\/div>\n\n                                <\/div>\n                                <div class=\"team-member--image\">\n                                                                    <\/div>\n                            <\/div>\n                                                            <div class=\"team-member--bio snug-child\">\n                                    <p>As VP of Retention for the Glenigan brand I hold strategic responsibility for driving customer retention and the growth of our renewal portfolio, ensuring we deliver sustained value and fulfil our &#8220;forever promise&#8221; to clients. I lead our Account Management and Client Services teams, aligning their performance to business goals and maintaining consistently high standards of client engagement. I also oversee the development and governance of key commercial partnerships and strategic accounts.<\/p>\n<p>My current role at Hubexo stands out as a career highlight. The collaborative, supportive culture here &#8211; combined with a shared drive for success &#8211; makes it a fantastic environment to lead in. I\u2019m proud to work with a team that consistently goes the extra mile, achieving six consecutive years of sustained year-on-year growth in client retention.<\/p>\n<p>Outside of work, I enjoy spending quality time with my wife and two children, slow-cooking on the Big Green Egg, and taking our annual family trips to Jersey and Puglia. I\u2019m also a lifelong fan of classic house music, with a passion for mixing and DJing that\u2019s still going strong in my late forties.<\/p>\n                                <\/div>\n                                <button class=\"team-member--button\">\n                                    <span class=\"button--text\">Show more<\/span>\n                                    <svg width=\"16\" height=\"20\" viewbox=\"0 0 16 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<path d=\"M8 0.953193L8 15.8701\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<path d=\"M0.615385 12.0304C4.67692 12.0304 8 15.3535 8 19.415\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<path d=\"M15.3828 12.0304C11.3213 12.0304 7.9982 15.3535 7.9982 19.415\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<\/svg>                                <\/button>\n                                                                                                                <div class=\"team-member--email\">\n                                                            <\/div>\n                        <\/div>\n                                            <div class=\"team-member team-item grid-item fade-in\" data-country=\"\" data-management=\"\">\n                            <div class=\"team-member--meta\">\n                                <div class=\"team-member--title\">\n                                    <h3 class=\"small-title--bold snug\">Jane Hibbert<\/h3>\n                                    <p class=\"snug\">VP, Tech Content<\/p>\n\n                                    <div class=\"social-media\">\n                                                                            <\/div>\n\n                                <\/div>\n                                <div class=\"team-member--image\">\n                                                                            <img decoding=\"async\" src=\"https:\/\/uki.hubexo.com\/wp-content\/uploads\/2025\/04\/jane-hibbert-4-600px.jpg\" alt=\"\">\n                                                                    <\/div>\n                            <\/div>\n                                                            <div class=\"team-member--bio snug-child\">\n                                    <p>As VP of Tech Content at Hubexo, I\u2019m responsible for the global delivery of technical content across specification and product information. I focus on supporting specification writers and product manufacturers worldwide, improving how products are sourced, identified, and specified. I also lead initiatives to ensure product data &#8211; from performance characteristics to sustainability credentials \u2014 is accurate, accessible, and regionally aligned.<\/p>\n<p>Over my 14 years in the business, I\u2019ve helped launch NBS Source and the NBS National BIM Library, contributed to the NBS BIM Object Standard, and was honoured as a Top Tech Talent Under 30 by North East Times. I\u2019m passionate about mentoring emerging talent through initiatives like The Girls&#8217; Network and promoting diversity in the industry.<\/p>\n<p>Driven by a commitment to advancing the digital transformation of construction, I believe in the power of accurate information to improve safety, performance, and sustainability. Supporting our customers with specialist insight and fostering innovation remain at the core of my work.<\/p>\n                                <\/div>\n                                <button class=\"team-member--button\">\n                                    <span class=\"button--text\">Show more<\/span>\n                                    <svg width=\"16\" height=\"20\" viewbox=\"0 0 16 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<path d=\"M8 0.953193L8 15.8701\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<path d=\"M0.615385 12.0304C4.67692 12.0304 8 15.3535 8 19.415\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<path d=\"M15.3828 12.0304C11.3213 12.0304 7.9982 15.3535 7.9982 19.415\" stroke=\"#321432\" stroke-width=\"1.84615\" stroke-miterlimit=\"10\"\/>\n<\/svg>                                <\/button>\n                                                                                                                <div class=\"team-member--email\">\n                                                            <\/div>\n                        <\/div>\n                                            <div class=\"team-member team-item grid-item fade-in\" data-country=\"\" data-management=\"\">\n                            <div class=\"team-member--meta\">\n                                <div class=\"team-member--title\">\n                                    <h3 class=\"small-title--bold snug\">Matthew Crowe<\/h3>\n                                    <p class=\"snug\">VP, Sales, Product Information<\/p>\n\n                                    <div class=\"social-media\">\n                                                                            <\/div>\n\n                                <\/div>\n                                <div class=\"team-member--image\">\n                                                                    <\/div>\n                            <\/div>\n                                                                                                                <div class=\"team-member--email\">\n                                                            <\/div>\n                        <\/div>\n                                    <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n\n\n<div class=\"content-panel link-list white-text plum-bg fade-in-stagger\"\n     data-country=\"\"\n     id=\"\">\n\t    <div class=\"container fade-in\">\n        <h2 class=\"h5 snug\">Our values<\/h2>\n    <\/div>\n\t    <div class=\"container\">\n        <ul>\n\t\t\t            <li style=\"--n: 0\">\n                <div class=\"container\">\n\t\t\t\t\t                        <div class=\"no-link\">\n                            <div class=\"h2 snug link-list--title with-icon\">\n                                <span>Dream big<\/span>\n\t\t\t\t\t\t\t\t                                    <img style=\"display: none;\">\n\t\t\t\t\t\t\t\t                            <\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t                            <div class=\"link-list--overlay\">\n                                <svg class=\"pattern-a is-on-grey flipped\">\n                                    <g><\/g>\n                                <\/svg>\n                                <div class=\"container\">\n                                    <h3 class=\"h6 snug\">Dream big<\/h3>\n                                    <p>Embrace ambitious goals and strive to exceed expectations, every day.<\/p>\n                                <\/div>\n                            <\/div>\n                            <div class=\"link-list--trigger\"><\/div>\n\n\n\t\t\t\t\t\t\t                <\/div>\n\t\t\t\t    <\/div>\n    <hr>\n    <\/li>\n\t            <li style=\"--n: 1\">\n                <div class=\"container\">\n\t\t\t\t\t                        <div class=\"no-link\">\n                            <div class=\"h2 snug link-list--title with-icon\">\n                                <span>Own it<\/span>\n\t\t\t\t\t\t\t\t                                    <img style=\"display: none;\">\n\t\t\t\t\t\t\t\t                            <\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t                            <div class=\"link-list--overlay\">\n                                <svg class=\"pattern-a is-on-grey flipped\">\n                                    <g><\/g>\n                                <\/svg>\n                                <div class=\"container\">\n                                    <h3 class=\"h6 snug\">Own it<\/h3>\n                                    <p>Take ownership of your work and empower yourself to make a difference. <\/p>\n                                <\/div>\n                            <\/div>\n                            <div class=\"link-list--trigger\"><\/div>\n\n\n\t\t\t\t\t\t\t                <\/div>\n\t\t\t\t    <\/div>\n    <hr>\n    <\/li>\n\t            <li style=\"--n: 2\">\n                <div class=\"container\">\n\t\t\t\t\t                        <div class=\"no-link\">\n                            <div class=\"h2 snug link-list--title with-icon\">\n                                <span>Do the right thing<\/span>\n\t\t\t\t\t\t\t\t                                    <img style=\"display: none;\">\n\t\t\t\t\t\t\t\t                            <\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t                            <div class=\"link-list--overlay\">\n                                <svg class=\"pattern-a is-on-grey flipped\">\n                                    <g><\/g>\n                                <\/svg>\n                                <div class=\"container\">\n                                    <h3 class=\"h6 snug\">Do the right thing<\/h3>\n                                    <p>Stand firm in your values and let integrity guide your actions at every turn.<\/p>\n                                <\/div>\n                            <\/div>\n                            <div class=\"link-list--trigger\"><\/div>\n\n\n\t\t\t\t\t\t\t                <\/div>\n\t\t\t\t    <\/div>\n    <hr>\n    <\/li>\n\t            <li style=\"--n: 3\">\n                <div class=\"container\">\n\t\t\t\t\t                        <div class=\"no-link\">\n                            <div class=\"h2 snug link-list--title with-icon\">\n                                <span>Thrive together<\/span>\n\t\t\t\t\t\t\t\t                                    <img style=\"display: none;\">\n\t\t\t\t\t\t\t\t                            <\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t                            <div class=\"link-list--overlay\">\n                                <svg class=\"pattern-a is-on-grey flipped\">\n                                    <g><\/g>\n                                <\/svg>\n                                <div class=\"container\">\n                                    <h3 class=\"h6 snug\">Thrive together<\/h3>\n                                    <p>Collaborate, communicate, and celebrate success. <\/p>\n                                <\/div>\n                            <\/div>\n                            <div class=\"link-list--trigger\"><\/div>\n\n\n\t\t\t\t\t\t\t                <\/div>\n\t\t\t\t    <\/div>\n    <hr>\n    <\/li>\n\t    <\/ul>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":20,"featured_media":0,"parent":11,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-2379","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Our people | Meet the Hubexo UKI Team<\/title>\n<meta name=\"description\" content=\"Learn about our leadership and expert teams driving success in construction insights and technology across the UK &amp; Ireland.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/uki.hubexo.com\/vi\/about\/our-people\/\" \/>\n<meta property=\"og:locale\" content=\"vi_VN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Our people | Meet the Hubexo UKI Team\" \/>\n<meta property=\"og:description\" content=\"Learn about our leadership and expert teams driving success in construction insights and technology across the UK &amp; Ireland.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/uki.hubexo.com\/vi\/about\/our-people\/\" \/>\n<meta property=\"og:site_name\" content=\"Hubexo UKI\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-16T09:51:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/uki.hubexo.com\/wp-content\/uploads\/2024\/10\/Blog-brandlaunch-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1451\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/uki.hubexo.com\/about\/our-people\/\",\"url\":\"https:\/\/uki.hubexo.com\/about\/our-people\/\",\"name\":\"Our people | Meet the Hubexo UKI Team\",\"isPartOf\":{\"@id\":\"https:\/\/uki.hubexo.com\/#website\"},\"datePublished\":\"2025-04-29T14:57:51+00:00\",\"dateModified\":\"2025-07-16T09:51:46+00:00\",\"description\":\"Learn about our leadership and expert teams driving success in construction insights and technology across the UK & Ireland.\",\"breadcrumb\":{\"@id\":\"https:\/\/uki.hubexo.com\/about\/our-people\/#breadcrumb\"},\"inLanguage\":\"vi\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/uki.hubexo.com\/about\/our-people\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/uki.hubexo.com\/about\/our-people\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/uki.hubexo.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"About\",\"item\":\"https:\/\/uki.hubexo.com\/about\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Our people\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/uki.hubexo.com\/#website\",\"url\":\"https:\/\/uki.hubexo.com\/\",\"name\":\"Hubexo UKI\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/uki.hubexo.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"vi\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Our people | Meet the Hubexo UKI Team","description":"Learn about our leadership and expert teams driving success in construction insights and technology across the UK & Ireland.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/uki.hubexo.com\/vi\/about\/our-people\/","og_locale":"vi_VN","og_type":"article","og_title":"Our people | Meet the Hubexo UKI Team","og_description":"Learn about our leadership and expert teams driving success in construction insights and technology across the UK & Ireland.","og_url":"https:\/\/uki.hubexo.com\/vi\/about\/our-people\/","og_site_name":"Hubexo UKI","article_modified_time":"2025-07-16T09:51:46+00:00","og_image":[{"width":2560,"height":1451,"url":"https:\/\/uki.hubexo.com\/wp-content\/uploads\/2024\/10\/Blog-brandlaunch-scaled.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/uki.hubexo.com\/about\/our-people\/","url":"https:\/\/uki.hubexo.com\/about\/our-people\/","name":"Our people | Meet the Hubexo UKI Team","isPartOf":{"@id":"https:\/\/uki.hubexo.com\/#website"},"datePublished":"2025-04-29T14:57:51+00:00","dateModified":"2025-07-16T09:51:46+00:00","description":"Learn about our leadership and expert teams driving success in construction insights and technology across the UK & Ireland.","breadcrumb":{"@id":"https:\/\/uki.hubexo.com\/about\/our-people\/#breadcrumb"},"inLanguage":"vi","potentialAction":[{"@type":"ReadAction","target":["https:\/\/uki.hubexo.com\/about\/our-people\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/uki.hubexo.com\/about\/our-people\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/uki.hubexo.com\/"},{"@type":"ListItem","position":2,"name":"About","item":"https:\/\/uki.hubexo.com\/about\/"},{"@type":"ListItem","position":3,"name":"Our people"}]},{"@type":"WebSite","@id":"https:\/\/uki.hubexo.com\/#website","url":"https:\/\/uki.hubexo.com\/","name":"Hubexo UKI","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/uki.hubexo.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"vi"}]}},"featured_image_src":null,"featured_image_src_square":null,"_links":{"self":[{"href":"https:\/\/uki.hubexo.com\/vi\/wp-json\/wp\/v2\/pages\/2379","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/uki.hubexo.com\/vi\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/uki.hubexo.com\/vi\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/uki.hubexo.com\/vi\/wp-json\/wp\/v2\/users\/20"}],"replies":[{"embeddable":true,"href":"https:\/\/uki.hubexo.com\/vi\/wp-json\/wp\/v2\/comments?post=2379"}],"version-history":[{"count":1,"href":"https:\/\/uki.hubexo.com\/vi\/wp-json\/wp\/v2\/pages\/2379\/revisions"}],"predecessor-version":[{"id":2380,"href":"https:\/\/uki.hubexo.com\/vi\/wp-json\/wp\/v2\/pages\/2379\/revisions\/2380"}],"up":[{"embeddable":true,"href":"https:\/\/uki.hubexo.com\/vi\/wp-json\/wp\/v2\/pages\/11"}],"wp:attachment":[{"href":"https:\/\/uki.hubexo.com\/vi\/wp-json\/wp\/v2\/media?parent=2379"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}