{"id":26899,"date":"2021-01-06T20:33:57","date_gmt":"2021-01-06T20:33:57","guid":{"rendered":"https:\/\/kdc1000.wpengine.com\/?page_id=26899"},"modified":"2025-05-08T12:45:46","modified_gmt":"2025-05-08T17:45:46","slug":"kansas-framework-for-growth","status":"publish","type":"page","link":"https:\/\/www.kansascommerce.gov\/es\/kansas-framework-for-growth\/","title":{"rendered":"Marco de crecimiento de Kansas"},"content":{"rendered":"                    <div class=\"custom-cover-block d-flex justify-content-center   \" style=\"\n                                    background-color: #9b51e0;\n                                                    background-image: url('https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2021\/01\/Untitled-1-01.png');\n                                                                                    \" id=\"coverblock-1077930908\">\n        <div class=\"inner-content col-12 col-md-10 col-lg-9\" style=\"\n                                        color: #333333 !important;\n                                                                            \">\n            <div class=\"content\">\n\n<h2 class=\"wp-block-heading has-text-align-center\" id=\"h-kansas-framework-for-growth\"><span style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-white-color\">Kansas Framework for Growth<\/span><\/h2>\n\n\n\n<div class=\"wp-block-buttons is-horizontal is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-499968f5 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/issuu.com\/kdcmarketing\/docs\/framework_report-pageview?fr=sNjcyNDI5NDgzODM\">VIEW THE REPORT<\/a><\/div>\n<\/div>\n\n\n\n<p class=\"has-white-color has-text-color\">Accelerating economic growth in Kansas<\/p>\n\n<\/div>\n        <\/div>\n    <\/div>\n\n    <div id=\"video-lightbox-1077930908\" class=\"video-lightbox-overlay\" style=\"display: none;\">\n        <div class=\"video-lightbox-container\">\n            <button class=\"video-lightbox-close\">&times;<\/button>\n            <div class=\"video-lightbox-content\">\n                <iframe id=\"video-frame-1077930908\" src=\"\" frameborder=\"0\" allowfullscreen><\/iframe>\n            <\/div>\n        <\/div>\n    <\/div>\n\n    <style>\n                        \n        .video-lightbox-overlay {\n            position: fixed;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%;\n            background: rgba(0, 0, 0, 0.9);\n            z-index: 9999;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n        }\n        \n        .video-lightbox-container {\n            position: relative;\n            width: 90%;\n            max-width: 800px;\n            max-height: 90%;\n        }\n        \n        .video-lightbox-content {\n            position: relative;\n            width: 100%;\n            height: 0;\n            padding-bottom: 56.25%;\n        }\n        \n        .video-lightbox-content iframe {\n            position: absolute;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%;\n        }\n        \n        .video-lightbox-close {\n            position: absolute;\n            top: -40px;\n            right: 0;\n            background: none;\n            border: none;\n            color: white;\n            font-size: 30px;\n            cursor: pointer;\n            z-index: 10001;\n            width: 40px;\n            height: 40px;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n        }\n        \n        .video-lightbox-close:hover {\n            opacity: 0.7;\n        }\n        \n        .video-link {\n            position: relative;\n            display: inline-block;\n            cursor: pointer;\n        }\n    <\/style>\n\n    <script>\n        jQuery(document).ready(function(){\n            jQuery('#coverblock-1077930908 .wp-block-button__link').addClass('btn');\n            \n            const coverBlock = jQuery('#coverblock-1077930908');\n            const lightbox = jQuery('#video-lightbox-1077930908');\n            const videoFrame = jQuery('#video-frame-1077930908');\n            const closeBtn = jQuery('#video-lightbox-1077930908 .video-lightbox-close');\n            \n            function getVideoEmbedUrl(url) {\n                const youtubeRegex = \/(?:https?:\\\/\\\/)?(?:www\\.)?(?:youtube\\.com\\\/(?:[^\\\/\\n\\s]+\\\/\\S+\\\/|(?:v|e(?:mbed)?)\\\/|\\S*?[?&]v=)|youtu\\.be\\\/)([a-zA-Z0-9_-]{11})\/;\n                const youtubeMatch = url.match(youtubeRegex);\n                \n                if (youtubeMatch) {\n                    return `https:\/\/www.youtube.com\/embed\/${youtubeMatch[1]}?autoplay=1`;\n                }\n                \n                const vimeoRegex = \/(?:https?:\\\/\\\/)?(?:www\\.)?(?:vimeo\\.com\\\/)(\\d+)\/;\n                const vimeoMatch = url.match(vimeoRegex);\n                \n                if (vimeoMatch) {\n                    return `https:\/\/player.vimeo.com\/video\/${vimeoMatch[1]}?autoplay=1`;\n                }\n                \n                return null;\n            }\n            \n            function isVideoUrl(url) {\n                return \/(?:youtube\\.com|youtu\\.be|vimeo\\.com)\/i.test(url);\n            }\n            \n            coverBlock.find('a').each(function() {\n                const link = jQuery(this);\n                const href = link.attr('href');\n                \n                if (href && isVideoUrl(href)) {\n                    link.addClass('video-link');\n                    \n                    link.on('click', function(e) {\n                        e.preventDefault();\n                        const embedUrl = getVideoEmbedUrl(href);\n                        \n                        if (embedUrl) {\n                            videoFrame.attr('src', embedUrl);\n                            lightbox.fadeIn(300);\n                            jQuery('body').addClass('lightbox-open');\n                        }\n                    });\n                }\n            });\n            \n            function closeLightbox() {\n                lightbox.fadeOut(300);\n                videoFrame.attr('src', ''); \/\/ Stop video\n                jQuery('body').removeClass('lightbox-open');\n            }\n            \n            closeBtn.on('click', closeLightbox);\n            \n            lightbox.on('click', function(e) {\n                if (e.target === this) {\n                    closeLightbox();\n                }\n            });\n            \n            jQuery(document).on('keydown', function(e) {\n                if (e.keyCode === 27 && lightbox.is(':visible')) {\n                    closeLightbox();\n                }\n            });\n        });\n    <\/script>\n    \n\n    <div class=\"container \">            <div class=\"wrapper-block  \" style=\"\n                                                                                                                                    \">\n        \n\n<p><\/p>\n\n\n\n<p>Kansas is central to our nation in more than just geography. The industries that excel in Kansas are a steady, strong presence radiating from the heartland. Essentials like agriculture, manufacturing and logistics that make up a large portion of our economy have set Kansas on a stable economic path. Now, it&#8217;s time to stand on this solid foundation and reach new heights. The Kansas Framework for Growth is a plan to take our economy <em><strong>from stable to soaring<\/strong><\/em> in the next 15 years.<\/p>\n\n\n        <div class=\"clearfix\"><\/div>\n    <\/div>\n    <\/div>\n\n    <div class=\"container \">            <div class=\"wrapper-block  \" style=\"\n                                                                                                                                    \">\n        \n\n<blockquote class=\"wp-block-quote is-style-large is-layout-flow wp-block-quote-is-layout-flow\">\n<p>&#8220;The world is changing and accelerating every day, and therefore with urgency, we too must change.&#8221; &#8211; Kansas Governor Laura Kelly<\/p>\n<\/blockquote>\n\n\n        <div class=\"clearfix\"><\/div>\n    <\/div>\n    <\/div>\n\n                    <div class=\"split-block split-solid  \" id=\"splitblock-1684362007\">\n        <div class=\"row flex-row-reverse\" >\n            <div class=\"col-12 col-md-7 col-xl-5 text-box\">\n                <div class=\"h-100 d-flex align-items-center\"  style=\"background: #e95459;\">\n                    <div class=\"content\">\n\n<p>Under the leadership of Governor Laura Kelly and Lieutenant Governor and Commerce Secretary David Toland, and in partnership with communities, businesses, academia and economic development partners across the state, Kansas now has its first comprehensive economic development strategy since 1986. <\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/issuu.com\/kdcmarketing\/docs\/framework_report-pageview?fr=sNjcyNDI5NDgzODM\" target=\"_blank\" rel=\"# noopener noreferrer\">VIEW FRAMEWORK REPORT<\/a><\/div>\n<\/div>\n\n<\/div>\n                <\/div>\n            <\/div>\n            <div class=\"col-12 col-md-5 col-xl-7 img-box\"\n                 style=\"background-image: url('https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2021\/01\/Framework-Split-Block-01-1024x647.png'); background-position: center center;\"><\/div>\n        <\/div>\n    <\/div>\n\n    <!-- Video Lightbox Modal -->\n    <div id=\"video-lightbox-1684362007\" class=\"video-lightbox-overlay\" style=\"display: none;\">\n        <div class=\"video-lightbox-container\">\n            <button class=\"video-lightbox-close\">&times;<\/button>\n            <div class=\"video-lightbox-content\">\n                <iframe id=\"video-frame-1684362007\" src=\"\" frameborder=\"0\" allowfullscreen><\/iframe>\n            <\/div>\n        <\/div>\n    <\/div>\n\n    <style>\n        .video-lightbox-overlay {\n            position: fixed;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%;\n            background: rgba(0, 0, 0, 0.9);\n            z-index: 9999;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n        }\n        \n        .video-lightbox-container {\n            position: relative;\n            width: 90%;\n            max-width: 800px;\n            max-height: 90%;\n        }\n        \n        .video-lightbox-content {\n            position: relative;\n            width: 100%;\n            height: 0;\n            padding-bottom: 56.25%; \/* 16:9 aspect ratio *\/\n        }\n        \n        .video-lightbox-content iframe {\n            position: absolute;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%;\n        }\n        \n        .video-lightbox-close {\n            position: absolute;\n            top: -40px;\n            right: 0;\n            background: none;\n            border: none;\n            color: white;\n            font-size: 30px;\n            cursor: pointer;\n            z-index: 10001;\n            width: 40px;\n            height: 40px;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n        }\n        \n        .video-lightbox-close:hover {\n            opacity: 0.7;\n        }\n        \n        body.lightbox-open {\n            overflow: hidden;\n        }\n    <\/style>\n\n    <script>\n        jQuery(document).ready(function(){\n            const splitBlock = jQuery('#splitblock-1684362007');\n            const lightbox = jQuery('#video-lightbox-1684362007');\n            const videoFrame = jQuery('#video-frame-1684362007');\n            const closeBtn = jQuery('#video-lightbox-1684362007 .video-lightbox-close');\n            \n            \/\/ Function to get video embed URL\n            function getVideoEmbedUrl(url) {\n                const youtubeRegex = \/(?:https?:\\\/\\\/)?(?:www\\.)?(?:youtube\\.com\\\/(?:[^\\\/\\n\\s]+\\\/\\S+\\\/|(?:v|e(?:mbed)?)\\\/|\\S*?[?&]v=)|youtu\\.be\\\/)([a-zA-Z0-9_-]{11})\/;\n                const youtubeMatch = url.match(youtubeRegex);\n                \n                if (youtubeMatch) {\n                    return `https:\/\/www.youtube.com\/embed\/${youtubeMatch[1]}?autoplay=1`;\n                }\n                \n                const vimeoRegex = \/(?:https?:\\\/\\\/)?(?:www\\.)?(?:vimeo\\.com\\\/)(\\d+)\/;\n                const vimeoMatch = url.match(vimeoRegex);\n                \n                if (vimeoMatch) {\n                    return `https:\/\/player.vimeo.com\/video\/${vimeoMatch[1]}?autoplay=1`;\n                }\n                \n                return null;\n            }\n            \n            function isVideoUrl(url) {\n                return \/(?:youtube\\.com|youtu\\.be|vimeo\\.com)\/i.test(url);\n            }\n            \n            splitBlock.find('a').each(function() {\n                const link = jQuery(this);\n                const href = link.attr('href');\n                \n                if (href && isVideoUrl(href)) {\n                    link.addClass('video-link');\n                    \n                    link.on('click', function(e) {\n                        e.preventDefault();\n                        const embedUrl = getVideoEmbedUrl(href);\n                        \n                        if (embedUrl) {\n                            videoFrame.attr('src', embedUrl);\n                            lightbox.fadeIn(300);\n                            jQuery('body').addClass('lightbox-open');\n                        }\n                    });\n                }\n            });\n            \n            function closeLightbox() {\n                lightbox.fadeOut(300);\n                videoFrame.attr('src', ''); \/\/ Stop video\n                jQuery('body').removeClass('lightbox-open');\n            }\n            \n            closeBtn.on('click', closeLightbox);\n            \n            lightbox.on('click', function(e) {\n                if (e.target === this) {\n                    closeLightbox();\n                }\n            });\n\n            jQuery(document).on('keydown', function(e) {\n                if (e.keyCode === 27 && lightbox.is(':visible')) {\n                    closeLightbox();\n                }\n            });\n        });\n    <\/script>\n    \n\n                <div class=\"wrapper-block  \" style=\"\n                                                                                                                                    \">\n        \n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\" style=\"grid-template-columns:43% auto\"><figure class=\"wp-block-media-text__media\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"771\" src=\"https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2021\/02\/Framework-Pillars-Graphic-1024x771.png\" alt=\"Framework-Pillars-Graphic\" class=\"wp-image-28787 size-full\" srcset=\"https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2021\/02\/Framework-Pillars-Graphic-1024x771.png 1024w, https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2021\/02\/Framework-Pillars-Graphic-300x226.png 300w, https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2021\/02\/Framework-Pillars-Graphic-768x579.png 768w, https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2021\/02\/Framework-Pillars-Graphic-1536x1157.png 1536w, https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2021\/02\/Framework-Pillars-Graphic-2048x1543.png 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading\" id=\"h-framework-s-four-pillars\">Framework&#8217;s Four Pillars<\/h3>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"has-normal-font-size\">Our great people, communities, educational system and unique assets give Kansas a solid foundation for growth. While our sector mix is not aligned for future growth and resilience, with intentional action and investment, we can leverage our sectors into new opportunities through the development of modern skills and innovation. The Framework for Growth is grounded in four pillars: <\/p>\n\n\n\n<p class=\"has-normal-font-size\"><strong>TALENT | INNOVATION | COMMUNITY ASSETS | POLICY<\/strong><\/p>\n<\/div><\/div>\n\n\n        <div class=\"clearfix\"><\/div>\n    <\/div>\n    \n\n    <div class=\"container \">            <div class=\"accordion-block\">\n        <h3>Target Sectors for Accelerated Growth<\/h3>\n        <div class=\"accordion\" id=\"accordionExample\">\n        \n<div class=\"card simple\" >\n    <div class=\"card-header relative\" id=\"heading-1455837718\">\n        <div class=\"d-flex justify-content-between\">\n            <h5 class=\"mb-0\">Advanced Manufacturing<\/h5><button class=\"btn-link\" type=\"button\" data-toggle=\"collapse\" data-target=\"#collapse-1455837718\" aria-expanded=\"false\" aria-controls=\"collapse-1455837718\"><\/button>\n        <\/div>\n\n        <a href=\"javascript:;\" class=\"cover_link\" data-toggle=\"collapse\" data-target=\"#collapse-1455837718\" aria-expanded=\"false\" aria-controls=\"collapse-1455837718\" aria-label=\"Toggle\"><\/a>\n    <\/div>\n\n    <div id=\"collapse-1455837718\" class=\"collapse \" aria-labelledby=\"heading-1455837718\" data-parent=\"#accordionExample\">\n        <div class=\"card-body\">\n            \n\n<p>Kansas is specialized in several major advanced manufacturing subsectors and is forecasted to have a higher five-year employment growth than both peers and the U.S. in all major advanced manufacturing subsectors.<\/p>\n\n\n        <\/div>\n    <\/div>\n<\/div>\n\n<div class=\"card simple\" >\n    <div class=\"card-header relative\" id=\"heading-457519014\">\n        <div class=\"d-flex justify-content-between\">\n            <h5 class=\"mb-0\">Aerospace<\/h5><button class=\"btn-link\" type=\"button\" data-toggle=\"collapse\" data-target=\"#collapse-457519014\" aria-expanded=\"false\" aria-controls=\"collapse-457519014\"><\/button>\n        <\/div>\n\n        <a href=\"javascript:;\" class=\"cover_link\" data-toggle=\"collapse\" data-target=\"#collapse-457519014\" aria-expanded=\"false\" aria-controls=\"collapse-457519014\" aria-label=\"Toggle\"><\/a>\n    <\/div>\n\n    <div id=\"collapse-457519014\" class=\"collapse \" aria-labelledby=\"heading-457519014\" data-parent=\"#accordionExample\">\n        <div class=\"card-body\">\n            \n\n<p>Kansas has a proud history as an aerospace manufacturing leader. Looking ahead, Kansas has an opportunity to better align its world-class assets and competitive advantage in the aerospace industry with the subsectors that anticipate the most growth (i.e. guided missile and space vehicles and aircraft engine parts). <\/p>\n\n\n        <\/div>\n    <\/div>\n<\/div>\n\n<div class=\"card simple\" >\n    <div class=\"card-header relative\" id=\"heading-626246850\">\n        <div class=\"d-flex justify-content-between\">\n            <h5 class=\"mb-0\">Distribution, Transportation &#038; E-Commerce<\/h5><button class=\"btn-link\" type=\"button\" data-toggle=\"collapse\" data-target=\"#collapse-626246850\" aria-expanded=\"false\" aria-controls=\"collapse-626246850\"><\/button>\n        <\/div>\n\n        <a href=\"javascript:;\" class=\"cover_link\" data-toggle=\"collapse\" data-target=\"#collapse-626246850\" aria-expanded=\"false\" aria-controls=\"collapse-626246850\" aria-label=\"Toggle\"><\/a>\n    <\/div>\n\n    <div id=\"collapse-626246850\" class=\"collapse \" aria-labelledby=\"heading-626246850\" data-parent=\"#accordionExample\">\n        <div class=\"card-body\">\n            \n\n<p>Kansas has a high level of employment and specialization in major subsectors such as trucking and warehousing, and we need to stay on the forefront of these global trends to continue capturing growth and providing jobs for our logistics workers. Our central geographic location and urban cores could also help win logistics deals that could attract businesses and jobs.<\/p>\n\n\n        <\/div>\n    <\/div>\n<\/div>\n\n<div class=\"card simple\" >\n    <div class=\"card-header relative\" id=\"heading-1657006701\">\n        <div class=\"d-flex justify-content-between\">\n            <h5 class=\"mb-0\">Food &#038; Agriculture<\/h5><button class=\"btn-link\" type=\"button\" data-toggle=\"collapse\" data-target=\"#collapse-1657006701\" aria-expanded=\"false\" aria-controls=\"collapse-1657006701\"><\/button>\n        <\/div>\n\n        <a href=\"javascript:;\" class=\"cover_link\" data-toggle=\"collapse\" data-target=\"#collapse-1657006701\" aria-expanded=\"false\" aria-controls=\"collapse-1657006701\" aria-label=\"Toggle\"><\/a>\n    <\/div>\n\n    <div id=\"collapse-1657006701\" class=\"collapse \" aria-labelledby=\"heading-1657006701\" data-parent=\"#accordionExample\">\n        <div class=\"card-body\">\n            \n\n<p>Kansas is globally recognized as a premier region for cattle product, but this heavy reliance on a single industry poses natural risks. Kansas must explore opportunities for further economic diversification while supporting the vibrancy and competitiveness of its Food and Agriculture sector. Further, the state must prepare and equip Kansas farmers and food manufacturing workers with new skills to succeed, including technical and analytical expertise.<\/p>\n\n\n        <\/div>\n    <\/div>\n<\/div>\n\n<div class=\"card simple\" >\n    <div class=\"card-header relative\" id=\"heading-1197499366\">\n        <div class=\"d-flex justify-content-between\">\n            <h5 class=\"mb-0\">Professional &#038; Technical Services<\/h5><button class=\"btn-link\" type=\"button\" data-toggle=\"collapse\" data-target=\"#collapse-1197499366\" aria-expanded=\"false\" aria-controls=\"collapse-1197499366\"><\/button>\n        <\/div>\n\n        <a href=\"javascript:;\" class=\"cover_link\" data-toggle=\"collapse\" data-target=\"#collapse-1197499366\" aria-expanded=\"false\" aria-controls=\"collapse-1197499366\" aria-label=\"Toggle\"><\/a>\n    <\/div>\n\n    <div id=\"collapse-1197499366\" class=\"collapse \" aria-labelledby=\"heading-1197499366\" data-parent=\"#accordionExample\">\n        <div class=\"card-body\">\n            \n\n<p>While more traditionally known for industries such as agriculture and manufacturing, Kansans have developed a comparative advantage and experienced growth in the professional and technical services industries. To maintain and accelerate our growing leadership in this high-opportunity cluster, there are three broad approaches Kansas can pursue: doubling down on headquarters opportunities, supporting regional service hubs and centers of excellence and strengthening the digital backbone and talent pipeline.<\/p>\n\n\n        <\/div>\n    <\/div>\n<\/div>\n\n        <\/div>\n    <\/div>\n    <script>\n        jQuery(function($){\n            if ( window.location.hash ) {\n                 var hash = window.location.hash,\n                     $hash = $('.accordion-block .card'+hash);\n                $('.card-header button', $hash).click();\n                setTimeout(function() {\n                    $('html, body').animate({\n                        scrollTop: $hash.offset().top - 160\n                    }, 100);\n                }, 500);\n             }\n        })\n    <\/script>\n    <\/div>\n\n    <div class=\"container \">            <div class=\"wrapper-block  \" style=\"\n                                                                                                                                    \">\n        \n\n<h4 class=\"wp-block-heading\" id=\"h-want-to-know-more-about-framework-for-growth-contact-us\">Want to know more about Framework for Growth? Contact Us.<\/h4>\n\n\n\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n                <div class=\"staff-card-block simple col-12\"><div class=\"container\"><div class=\"row justify-content-between align-items-center\"><h5 class=\"col-sm-12 col-md txt-center add-padding-y mod-padding-half\">CONTACT<\/h5><p class=\"col-sm-12 col-md-4 col-lg-5 txt-center add-padding-y mod-padding-half\">Brandon Hutton, Director of Innovation Development and Programming<\/p><p class=\"col-sm-12 col-md txt-center add-padding-y mod-padding-half\"><a href=\"tel:(785) 4808554\">(785) 480-8554<\/a><\/p><p class=\"col-sm-12 col-md txt-center add-padding-y mod-padding-half\"><a href=\"mailto:Brandon.Hutton@ks.gov\">Brandon.Hutton@ks.gov<\/a><\/p><\/div><\/div><\/div>    \n\n        <div class=\"clearfix\"><\/div>\n    <\/div>\n    <\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":79,"featured_media":28889,"parent":0,"menu_order":208,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_eb_attr":"","_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"class_list":["post-26899","page","type-page","status-publish","has-post-thumbnail","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v19.5 (Yoast SEO v27.6) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Kansas Framework for Growth - Kansas Department of Commerce<\/title>\n<meta name=\"description\" content=\"The Kansas Framework for Growth is a plan to take the Kansas economy from stable to soaring by strategically focusing on four pillars to prosperity: Talent, Innovation, Community Assets and Policy.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.kansascommerce.gov\/es\/kansas-framework-for-growth\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Kansas Framework for Growth\" \/>\n<meta property=\"og:description\" content=\"The Kansas Framework for Growth is a plan to take the Kansas economy from stable to soaring by strategically focusing on four pillars to prosperity: Talent, Innovation, Community Assets and Policy.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.kansascommerce.gov\/es\/kansas-framework-for-growth\/\" \/>\n<meta property=\"og:site_name\" content=\"Kansas Department of Commerce\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/KansasCommerce\/\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-08T17:45:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2021\/02\/FWG-Social-Media-Rectangle-01-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1261\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@KansasCommerce\" \/>\n<meta name=\"twitter:label1\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.kansascommerce.gov\\\/kansas-framework-for-growth\\\/\",\"url\":\"https:\\\/\\\/www.kansascommerce.gov\\\/kansas-framework-for-growth\\\/\",\"name\":\"Kansas Framework for Growth - Kansas Department of Commerce\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.kansascommerce.gov\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.kansascommerce.gov\\\/kansas-framework-for-growth\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.kansascommerce.gov\\\/kansas-framework-for-growth\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.kansascommerce.gov\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/FWG-Social-Media-Rectangle-01-scaled.jpg\",\"datePublished\":\"2021-01-06T20:33:57+00:00\",\"dateModified\":\"2025-05-08T17:45:46+00:00\",\"description\":\"The Kansas Framework for Growth is a plan to take the Kansas economy from stable to soaring by strategically focusing on four pillars to prosperity: Talent, Innovation, Community Assets and Policy.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.kansascommerce.gov\\\/kansas-framework-for-growth\\\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.kansascommerce.gov\\\/kansas-framework-for-growth\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/www.kansascommerce.gov\\\/kansas-framework-for-growth\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.kansascommerce.gov\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/FWG-Social-Media-Rectangle-01-scaled.jpg\",\"contentUrl\":\"https:\\\/\\\/www.kansascommerce.gov\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/FWG-Social-Media-Rectangle-01-scaled.jpg\",\"width\":2560,\"height\":1261},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.kansascommerce.gov\\\/kansas-framework-for-growth\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.kansascommerce.gov\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Kansas Framework for Growth\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.kansascommerce.gov\\\/#website\",\"url\":\"https:\\\/\\\/www.kansascommerce.gov\\\/\",\"name\":\"Kansas Department of Commerce\",\"description\":\"Empowering Prosperity\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.kansascommerce.gov\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.kansascommerce.gov\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.kansascommerce.gov\\\/#organization\",\"name\":\"Kansas Department of Commerce\",\"url\":\"https:\\\/\\\/www.kansascommerce.gov\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/www.kansascommerce.gov\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.kansascommerce.gov\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/kdc_logo.png\",\"contentUrl\":\"https:\\\/\\\/www.kansascommerce.gov\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/kdc_logo.png\",\"width\":600,\"height\":347,\"caption\":\"Kansas Department of Commerce\"},\"image\":{\"@id\":\"https:\\\/\\\/www.kansascommerce.gov\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/KansasCommerce\\\/\",\"https:\\\/\\\/x.com\\\/KansasCommerce\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/kansas-department-of-commerce\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Kansas Framework for Growth - Kansas Department of Commerce","description":"The Kansas Framework for Growth is a plan to take the Kansas economy from stable to soaring by strategically focusing on four pillars to prosperity: Talent, Innovation, Community Assets and Policy.","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:\/\/www.kansascommerce.gov\/es\/kansas-framework-for-growth\/","og_locale":"es_ES","og_type":"article","og_title":"Kansas Framework for Growth","og_description":"The Kansas Framework for Growth is a plan to take the Kansas economy from stable to soaring by strategically focusing on four pillars to prosperity: Talent, Innovation, Community Assets and Policy.","og_url":"https:\/\/www.kansascommerce.gov\/es\/kansas-framework-for-growth\/","og_site_name":"Kansas Department of Commerce","article_publisher":"https:\/\/www.facebook.com\/KansasCommerce\/","article_modified_time":"2025-05-08T17:45:46+00:00","og_image":[{"width":2560,"height":1261,"url":"https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2021\/02\/FWG-Social-Media-Rectangle-01-scaled.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_site":"@KansasCommerce","twitter_misc":{"Tiempo de lectura":"3 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.kansascommerce.gov\/kansas-framework-for-growth\/","url":"https:\/\/www.kansascommerce.gov\/kansas-framework-for-growth\/","name":"Kansas Framework for Growth - Kansas Department of Commerce","isPartOf":{"@id":"https:\/\/www.kansascommerce.gov\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.kansascommerce.gov\/kansas-framework-for-growth\/#primaryimage"},"image":{"@id":"https:\/\/www.kansascommerce.gov\/kansas-framework-for-growth\/#primaryimage"},"thumbnailUrl":"https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2021\/02\/FWG-Social-Media-Rectangle-01-scaled.jpg","datePublished":"2021-01-06T20:33:57+00:00","dateModified":"2025-05-08T17:45:46+00:00","description":"The Kansas Framework for Growth is a plan to take the Kansas economy from stable to soaring by strategically focusing on four pillars to prosperity: Talent, Innovation, Community Assets and Policy.","breadcrumb":{"@id":"https:\/\/www.kansascommerce.gov\/kansas-framework-for-growth\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.kansascommerce.gov\/kansas-framework-for-growth\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/www.kansascommerce.gov\/kansas-framework-for-growth\/#primaryimage","url":"https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2021\/02\/FWG-Social-Media-Rectangle-01-scaled.jpg","contentUrl":"https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2021\/02\/FWG-Social-Media-Rectangle-01-scaled.jpg","width":2560,"height":1261},{"@type":"BreadcrumbList","@id":"https:\/\/www.kansascommerce.gov\/kansas-framework-for-growth\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.kansascommerce.gov\/"},{"@type":"ListItem","position":2,"name":"Kansas Framework for Growth"}]},{"@type":"WebSite","@id":"https:\/\/www.kansascommerce.gov\/#website","url":"https:\/\/www.kansascommerce.gov\/","name":"Departamento de Comercio de Kansas","description":"Fomentar la prosperidad","publisher":{"@id":"https:\/\/www.kansascommerce.gov\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.kansascommerce.gov\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/www.kansascommerce.gov\/#organization","name":"Departamento de Comercio de Kansas","url":"https:\/\/www.kansascommerce.gov\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/www.kansascommerce.gov\/#\/schema\/logo\/image\/","url":"https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2020\/07\/kdc_logo.png","contentUrl":"https:\/\/www.kansascommerce.gov\/wp-content\/uploads\/2020\/07\/kdc_logo.png","width":600,"height":347,"caption":"Kansas Department of Commerce"},"image":{"@id":"https:\/\/www.kansascommerce.gov\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/KansasCommerce\/","https:\/\/x.com\/KansasCommerce","https:\/\/www.linkedin.com\/company\/kansas-department-of-commerce\/"]}]}},"publishpress_future_action":{"enabled":false,"date":"2026-05-19 18:18:24","action":"change-status","newStatus":"draft","terms":[],"taxonomy":"","extraData":[]},"publishpress_future_workflow_manual_trigger":{"enabledWorkflows":[]},"_links":{"self":[{"href":"https:\/\/www.kansascommerce.gov\/es\/wp-json\/wp\/v2\/pages\/26899","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.kansascommerce.gov\/es\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.kansascommerce.gov\/es\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.kansascommerce.gov\/es\/wp-json\/wp\/v2\/users\/79"}],"replies":[{"embeddable":true,"href":"https:\/\/www.kansascommerce.gov\/es\/wp-json\/wp\/v2\/comments?post=26899"}],"version-history":[{"count":0,"href":"https:\/\/www.kansascommerce.gov\/es\/wp-json\/wp\/v2\/pages\/26899\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.kansascommerce.gov\/es\/wp-json\/wp\/v2\/media\/28889"}],"wp:attachment":[{"href":"https:\/\/www.kansascommerce.gov\/es\/wp-json\/wp\/v2\/media?parent=26899"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}