CINXE.COM
Welcome to Investment NSW - Investment NSW
<!doctype html> <html lang="en" class="no-js"> <head> <meta charset="utf-8"> <script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.1.1/core.min.js" integrity="sha512-t8vdA86yKUE154D1VlNn78JbDkjv3HxdK/0MJDMBUXUjshuzRgET0ERp/0MAgYS+8YD9YmFwnz6+FWLz1gRZaw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.1.1/sha256.min.js" integrity="sha512-fv28nWHTcWfoN3KBd2fs+YWsirQ+L0b/iIRS7HcNDPSAwxy6oSjRrYjQ+OtJoJz0wUKsVcPYgwcZzK04KfHD0A==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> <script> (function() { let author = '' let date = '' function dataLayerAdd(content) { window.dataLayer = window.dataLayer || []; window.dataLayer.push(content) } function contactLink(link) { if (link.classList.contains('contact-header')) { dataLayerAdd({ 'event': 'ga.contact_us_link_click', 'click_text': link.innerText, 'click_url': link.href }) return true } return false } function mainNavLink(link) { if ( link && link.parentElement && link.parentElement.parentElement && link.parentElement.parentElement.classList.contains('nsw-main-nav__list') ) { const clickText = link.querySelector('span').innerText dataLayerAdd({ 'event': 'ga.menu_navigation', 'click_text': clickText, 'click_url': link.href }) return true } return false } function subNavLink(link) { if ( ( link.parentElement && link.parentElement.parentElement && link.parentElement.parentElement.classList.contains('nsw-main-nav__sub-list') ) || ( link.parentElement && link.parentElement.classList.contains('nsw-main-nav__title') ) ) { const clickText = link.querySelector('span').innerText let menuTitle = '' const menus = document.querySelectorAll('.nsw-main-nav__list>li') const menusArray = [...menus] menusArray.forEach((menu, index) => { if (menu.contains(link)) { const menuElement = menu.querySelector('.nsw-main-nav__list>li>a>span') menuTitle = menuElement.innerText } }) dataLayerAdd({ 'click_url': link.href, 'event': 'ga.sub_menu_navigation', 'click_text': clickText, 'menu_title': menuTitle, 'click_url': link.href }) return true } return false } function breadcrumbLink(link) { if (link.classList.contains('nsw-breadcrumb__link')) { dataLayerAdd({ 'event': 'ga.breadcrumb_link_click', 'click_text': link.innerText, 'click_url': link.href }) return true } return false } function bannerLink(link) { if ( link.parentElement && link.parentElement.classList.contains('nsw-hero-banner__button') ) { dataLayerAdd({ 'event': 'ga.nsw_card_link_click', 'click_text': link.innerText, 'click_url': link.href }) return true } if ( window.location.pathname = '/' && link.classList.contains('link-container') ) { dataLayerAdd({ 'event': 'ga.nsw_card_link_click', 'click_text': link.innerText, 'click_url': link.href }) return true } return false } function subscribeLink(link) { if (link.href.includes('confirmsubscription.com')) { dataLayerAdd({ 'event': 'ga.subscribe_button_click', 'click_text': [...link.childNodes][0].data || link.innerText, 'click_url': link.href }) return true } return false } function fileDownload(link) { const extensions = ['.pdf', '.doc', '.docx', '.mp4', '.mp3', '.exe'] const linkSplit = link.href.split('.') const lastItem = linkSplit[linkSplit.length - 1] if (extensions.includes('.' + lastItem)) { dataLayerAdd({ 'event': 'ga.file_download', 'file_extension': lastItem, 'click_text': link.innerText, 'link_url': link.href, }) return true } return false } function socialLink(link) { const socialUrls = [ 'twitter.com', 'linked.com', 'facebook.com', 'instagram.com', 'x.com' ] let isSocial = false socialUrls.forEach(socialUrl => { if (link.href.includes(socialUrl)) isSocial = true }) if (isSocial) { dataLayerAdd({ 'event': 'ga.social_media_link_click', 'click_text': link.innerText, 'click_url': link.href, }) return true } return false } function podcastLink(link) { if (link.href.includes('/news-and-events/podcasts')) { dataLayerAdd({ 'event': 'ga.podcast_tile_tracking', 'podcast_title': link.innerText, 'click_url': link.href, }) return true } return false } function genericButtonLink(link) { if (link.classList.contains('nsw-button')) { dataLayerAdd({ 'event': 'ga.button_click', 'click_text': link.innerText, 'click_url': link.href, }) return true } return false } function mailtoLink(link) { if (link.href.slice(0,7) === 'mailto:') { dataLayerAdd({ 'event': 'ga.maito_link', 'click_text': link.innerText, 'click_url': link.href }) return true } return false } function externalLink(link) { const url = new URL(link.href) const linkHost = url.host const windowHost = window.location.host if (linkHost !== windowHost) { dataLayerAdd({ 'event': 'ga.external_link_click', 'click_text': link.innerText, 'link_url': link.href }) return true } return false } function genericLink(link) { dataLayerAdd({ 'event': 'ga.link_click', 'click_text': link.innerText, 'click_url': link.href, }) } function linkManager(link) { if (externalLink(link)) return if (mailtoLink(link)) return if (fileDownload(link)) return if (contactLink(link)) return if (mainNavLink(link)) return if (subNavLink(link)) return if (breadcrumbLink(link)) return if (podcastLink(link)) return if (subscribeLink(link)) return if (socialLink(link)) return if (link.parentElement.classList.contains('nsw-hero-banner__button') || link.classList.contains('link-container')) { if (bannerLink(link)) return } if (genericButtonLink(link)) return genericLink(link) } function attachLinkListeners() { const links = document.querySelectorAll('a') links.forEach(link => { link.addEventListener('click', () => { linkManager(link) }) }) } function pageView() { const data = { 'event': 'page_view', 'user_agent': window.navigator.userAgent } if (author !== '') { data['article_author'] = author } if (date !== '') { data['publication_date'] = date } const cookie = document.cookie .split('; ') .map(value => value.split('=')) .find(value => value[0] === '_ga') if (cookie && cookie.length === 2) data['device_id'] = cookie[1] dataLayerAdd(data) } function searchTerm() { const searchForms = document.querySelectorAll('#SearchForm_getSearchForm') const searchFormsArray = [...searchForms] searchFormsArray.forEach((searchForm => { const searchButton = searchForm.querySelector('button') const input = searchForm.querySelector('input') searchForm.addEventListener('submit', (event) => { dataLayerAdd({ 'event': 'ga.site_search_tracking', 'search_term': input.value }) }) })) } const formConfigs = [ { event: 'ga.media_releases_filter', action: '/news-and-events/media-releases/', values: [ { type: 'input', name: 'sorted_by', id: 'MediaHolder_SortBy', }, { type: 'input', name: 'search_term', id: 'filters-keywords', }, { type: 'input', name: 'category', id: 'filters-category', }, { type: 'constant', name: 'click_text', value: 'Apply filters', }, { type: 'constant', name: 'click_url', value: '/news-and-events/media-releases/', }, ] }, { event: 'ga.event_filter', action: '/news-and-events/events/', values: [ { type: 'input', name: 'sorted_by', id: 'MediaHolder_SortBy', }, { type: 'input', name: 'date', id: 'filters-date', }, { type: 'input', name: 'search_term', id: 'filters-keywords', }, { type: 'input', name: 'industry', id: 'filters-industry', }, { type: 'input', name: 'region', id: 'filters-region', }, ] }, { event: 'ga.quote_form_submit', action: '/innovation/sydney-startup-hub/event-space-hire/get-a-quote/element/294/Form', values: [ { type: 'input', name: 'state', id: 'UserForm_Form_294_EditableTextField_62488', }, { type: 'input', name: 'suburb', id: 'UserForm_Form_294_EditableTextField_5bdb3', }, { type: 'hashedInput', name: 'hashed_email', id: 'UserForm_Form_294_EditableTextField_59909', }, { type: 'radio', name: 'company_description', inputIds: [ 'UserForm_Form_294_EditableTextField_2c652_Sydney_Startup_Hub_resident', 'UserForm_Form_294_EditableTextField_2c652_External_business', 'UserForm_Form_294_EditableTextField_2c652_NSW_Government_agency', 'UserForm_Form_294_EditableTextField_2c652_Local_government_agency', ] } ] }, { event: 'ga.request_tour_form_submit', action: '/innovation/sydney-startup-hub/community-workspace/element/1591/Form', values: [ { type: 'hashedInput', name: 'hashed_email', id: 'UserForm_Form_1591_EditableTextField_7fa59', }, { type: 'input', name: 'date', id: 'UserForm_Form_1591_EditableTextField_3166b', }, ] }, { event: 'ga.booking_form_submit', action: '/innovation/sydney-startup-hub/regional-entrepreneurs/book-regional-landing-pad/element/337/Form', values: [ { type: 'hashedInput', name: 'hashed_email', id: 'UserForm_Form_337_EditableTextField_535db', }, { type: 'checkboxGroup', name: 'booking_choice', inputIds: [ 'UserForm_Form_337_EditableTextField_b3afa_Hot_desk', 'UserForm_Form_337_EditableTextField_b3afa_Meeting_room', 'UserForm_Form_337_EditableTextField_b3afa_Conference_room', ], }, { type: 'input', name: 'time', id: 'UserForm_Form_337_EditableTextField_4194c', }, { type: 'input', name: 'suburb', id: 'UserForm_Form_337_EditableTextField_dda3e', }, { type: 'input', name: 'date', id: 'UserForm_Form_337_EditableTextField_a43fb', }, ] }, { event: 'ga.contact_us_form_space', action: '/priority-sectors/defence-and-aerospace/space-program/element/618/Form', values: [ { type: 'hashedInput', name: 'hashed_email', id: 'UserForm_Form_618_EditableTextField_fe679', }, { type: 'input', name: 'country', id: 'UserForm_Form_618_EditableTextField_5aaf7', }, ] }, ] function formHandler(config, form) { const data = { 'event': config.event } form.addEventListener('submit', (event) => { config.values.forEach((value) => { if (value.type === 'input') { data[value.name] = document.getElementById(value.id).value } if (value.type === 'hashedInput') { const elementValue = document.getElementById(value.id) const lowerCaseValue = elementValue.value.toLowerCase() const hashedValue = CryptoJS.SHA256(lowerCaseValue).toString() data[value.name] = hashedValue } if (value.type === 'radio') { let checkedValue = '' value.inputIds.forEach((inputId) => { const element = document.getElementById(inputId) if (element.checked) checkedValue = element.value }) data[value.name] = checkedValue } if (value.type === 'constant') { data[value.name] = value.value } if (value.type === 'checkboxGroup') { let checkedValues = '' value.inputIds.forEach((inputId) => { const element = document.getElementById(inputId) if (!element.checked) return if (checkedValues === '') { checkedValues = element.value return } checkedValues = checkedValues + ' AND ' + element.value }) data[value.name] = checkedValues } }) dataLayerAdd(data) }) } function pageForms() { const forms = document.querySelectorAll('form') forms.forEach((form) => { const action = form.action if (action === '') return const actionUrl = new URL(action) formConfigs.forEach((config) => { if (actionUrl.pathname !== config.action) return formHandler(config, form) }) }) } const remove = { 'event': 'ga.contact_us_link_click', 'industry': '<industry>', 'net_zero_economy': '<net_zero_economy>', 'hashed_email': '<hashed_email>', 'hashed_phone': '<hashed_phone>', 'country': '<country>', 'state': '<state>', 'business_or_organisation': '<business_or_organisation>', 'company_name': '<company_name>', 'size_of_business': '<size_of_business>', 'form_name': '<form_name>', 'indigenous_business': '<indigenous_business>', 'click_text': '<click_text>', 'click_url': '<click_url>' } const externalFormConfigs = [ { forId: '4634172', formName: 'Invest In New South Wales', clickText: 'Submit', url: 'https://investmentnsw.tfaforms.net/api_v2/workflow/processor', values: [ { type: 'input', id: 'tfa_311', name: 'industry', hashed: false }, { type: 'input', id: 'tfa_4', name: 'hashed_email', hashed: true }, { type: 'input', id: 'tfa_5', name: 'hashed_phone', hashed: true }, { type: 'input', id: 'tfa_366', name: 'country', hashed: false }, { type: 'input', id: 'tfa_301', name: 'state', hashed: false }, { type: 'input', id: 'tfa_10', name: 'company_name', hashed: false }, { type: 'input', id: 'tfa_9', name: 'size_of_business', hashed: false }, { type: 'checkbox', id: 'tfa_351', name: 'business_or_organisation', }, { type: 'checkbox', id: 'tfa_354', name: 'indigenous_business', }, ] }, { forId: '4634174', formName: 'Grants and programs', clickText: 'Submit', url: 'https://investmentnsw.tfaforms.net/api_v2/workflow/processor', values: [ { type: 'input', id: 'tfa_311', name: 'industry', hashed: false }, { type: 'input', id: 'tfa_4', name: 'hashed_email', hashed: true }, { type: 'input', id: 'tfa_5', name: 'hashed_phone', hashed: true }, { type: 'input', id: 'tfa_366', name: 'country', hashed: false }, { type: 'input', id: 'tfa_301', name: 'state', hashed: false }, { type: 'input', id: 'tfa_10', name: 'company_name', hashed: false }, { type: 'input', id: 'tfa_9', name: 'size_of_business', hashed: false }, { type: 'checkbox', id: 'tfa_351', name: 'business_or_organisation', }, { type: 'checkbox', id: 'tfa_354', name: 'indigenous_business', }, ] }, { forId: '4634160', formName: 'We can help', clickText: 'Submit', url: 'https://investmentnsw.tfaforms.net/api_v2/workflow/processor', values: [ { type: 'input', id: 'tfa_4', name: 'hashed_email', hashed: true }, { type: 'input', id: 'tfa_5', name: 'hashed_phone', hashed: true }, ] }, { forId: '4634171', formName: 'Export from New South Wales', clickText: 'Submit', url: 'https://investmentnsw.tfaforms.net/4634171', values: [ { type: 'input', id: 'tfa_311', name: 'industry', hashed: false }, { type: 'input', id: 'tfa_4', name: 'hashed_email', hashed: true }, { type: 'input', id: 'tfa_621', name: 'hashed_phone', hashed: true }, { type: 'input', id: 'tfa_366', name: 'country', hashed: false }, { type: 'input', id: 'tfa_301', name: 'state', hashed: false }, { type: 'input', id: 'tfa_10', name: 'company_name', hashed: false }, { type: 'input', id: 'tfa_9', name: 'size_of_business', hashed: false }, { type: 'checkbox', id: 'tfa_354', name: 'indigenous_business', }, ] }, ] function externalFormHandler(config, messageData) { const data = { 'event': 'ga.contact_us_link_click', 'form_name': config.formName, 'click_text': config.clickText, 'click_url': config.url } config.values.forEach(configValue => { if (configValue.type === 'input') { let messageValue = '' messageData.values.forEach(value => { if (value.id === configValue.id) messageValue = value.value }) if (configValue.hashed) { messageValue = CryptoJS.SHA256(messageValue.toLowerCase()).toString() } data[configValue.name] = messageValue } if (configValue.type === 'checkbox') { let messageValue = '' messageData.values.forEach(value => { if (value.id === configValue.id) messageValue = value.checked }) data[configValue.name] = messageValue + '' } }) dataLayerAdd(data) } function externalForms() { window.addEventListener('message', (message) => { if (!( message.data && message.data.eventType === 'formassembly' && message.data.forId && message.data.values )) return externalFormConfigs.forEach(config => { if (message.data.forId === config.forId) externalFormHandler(config, message.data) }) }) } function podcastTracker() { let show = '' let episode = '' let isPlaying = false window.addEventListener('message', message => { if (!message.origin.includes('embed.acast.com')) return if (!(message.data && message.data.eventName)) return if (!( message.data.eventName === 'postmessage:on:play' || message.data.eventName === 'postmessage:on:seek' || message.data.eventName === 'postmessage:on:pause' )) return if (!isPlaying && message.data.eventName === 'postmessage:on:pause') return if (message.data.eventName === 'postmessage:on:play') { isPlaying = true } if ( message.data.data && message.data.data.show ) { show = message.data.data.show } if ( message.data.data && message.data.data.episode ) { episode = message.data.data.episode } const state = message.data.eventName.slice(15) dataLayerAdd({ 'event': 'ga.podcast_tracking', 'podcast_title': show, 'episode_name': episode, 'podcast_status': state }) }) } function registerEvent() { const event = document.querySelector('.event-template-item') if (!event) return const registerButton = event.querySelector('.event-template-item .nsw-button') if(!registerButton) return const dateElement = event.querySelector('.event-date') const timeElement = event.querySelector('.event-time') const endTimeElement = event.querySelector('.event-time') const organiserElement = event.querySelector('.event-organiser') const locationElement = event.querySelector('.event-location') const data = { 'event': 'ga.register_for_event_button_click', 'click_text': registerButton.innerText, 'click_url': registerButton.href, } if (dateElement) data['event_start_date'] = dateElement.dateTime if (timeElement) data['event_start_time'] = timeElement.dateTime if (endTimeElement) data['event_end_time'] = timeElement.dateTime if (organiserElement) data['event_organiser'] = organiserElement.innerText if (locationElement) data['event_location'] = locationElement.innerText registerButton.addEventListener('click', () => dataLayerAdd(data)) } function youtubeDataLayer(state) { if (!([0,1,2].includes(state.data))) return; let status = ''; if (state.data === 1) status = 'playing'; if (state.data === 2) status = 'paused'; if (state.data === 0) status = 'ended'; const title = state.target.videoTitle; const url = state.target.getVideoUrl(); const duration = state.target.getDuration(); const currentTime = state.target.getCurrentTime(); const percentwatched = Math.round(currentTime / duration * 100); dataLayerAdd({ 'event': 'ga.video_tracking', 'video_status': status, 'video_title': title, 'video_url': url, 'video_percent': percentwatched, 'video_provider': 'YouTube' }) } function videos() { const iframes = [...document.querySelectorAll('iframe')] const videos = iframes.filter((iframe) => { return iframe.src.includes('youtube.com') }) if (videos.length < 1) return videos.forEach((video, index) => { if (video.id == "") { video.id = 'yt-video-' + index } const url = new URL(video.src) url.searchParams.set('enablejsapi', '1') video.src = url.href }) window.onYouTubeIframeAPIReady = function() { videos.forEach((video) => { const player = new YT.Player(video.id, { events: { 'onStateChange': youtubeDataLayer } }); }) } } function accordionButtonWatcher(button) { let active = false const title = [...button.childNodes][0].data || button.innerText const config = { attributes: true, childList: false, subtree: false }; const callback = (mutationList, observer) => { for (const mutation of mutationList) { if (mutation.type !== "attributes") return const activeClass = button.classList.contains('active') if (activeClass !== active) { active = activeClass dataLayerAdd({ 'event': 'ga.accordion_click', 'accordion_title': title, 'accordion_status': active ? 'open' : 'closed' }) } } }; const observer = new MutationObserver(callback); observer.observe(button, config); } function accordionsLoad() { const accordions = document.querySelectorAll('.nsw-accordion__title') accordions.forEach((accordion) => { let buttonAdded = false const config = { attributes: false, childList: true, subtree: false }; const callback = (mutationList, observer) => { for (const mutation of mutationList) { if (mutation.type !== "childList") return const button = accordion.querySelector('.nsw-accordion__button') if (!button || buttonAdded) return buttonAdded = true observer.disconnect() accordionButtonWatcher(button) } }; const observer = new MutationObserver(callback); observer.observe(accordion, config); }) } function fireImmediately() { pageView() } function fireOnReady() { videos() attachLinkListeners() searchTerm() pageForms() externalForms() podcastTracker() registerEvent() accordionsLoad() } window.youtubeDataLayer = youtubeDataLayer fireImmediately() if (document.readyState === 'complete') { fireOnReady(); } else { document.addEventListener("DOMContentLoaded", fireOnReady); } })() </script> <base href="https://www.investment.nsw.gov.au/"><!--[if lte IE 6]></base><![endif]--> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Welcome to Investment NSW - Investment NSW</title> <meta name="description" content="A one-stop-shop to partner with business, attract investment and grow jobs in NSW. "> <meta property="og:type" content="website" /> <meta property="og:url" content="https://www.investment.nsw.gov.au/"> <meta property="og:title" content="Welcome to Investment NSW"> <meta property="og:description" content="A one-stop-shop to partner with business, attract investment and grow jobs in NSW. "> <meta name="twitter:card" content="summary"> <meta name="twitter:site" content="Investment NSW"> <meta name="twitter:url" content="https://www.investment.nsw.gov.au/"> <meta name="twitter:title" content="Welcome to Investment NSW"> <meta name="twitter:description" content="A one-stop-shop to partner with business, attract investment and grow jobs in NSW. "> <link rel="manifest" href="/_resources/vendor/nswdpc/waratah/themes/nswds/app/static/site.webmanifest.json?m=1681266912"> <link rel="shortcut icon" href="/_resources/vendor/nswdpc/waratah/themes/nswds/app/static/nsw-digital-logos/favicon/favicon-16x16.png?m=1681266912"> <link rel="apple-touch-icon" sizes="180x180" href="/_resources/vendor/nswdpc/waratah/themes/nswds/app/static/nsw-digital-logos/favicon/favicon-180x180.png?m=1681266912"> <link rel="apple-touch-icon" sizes="96x96" href="/_resources/vendor/nswdpc/waratah/themes/nswds/app/static/nsw-digital-logos/favicon/favicon-96x96.png?m=1681266912"> <link rel="apple-touch-icon" sizes="48x48" href="/_resources/vendor/nswdpc/waratah/themes/nswds/app/static/nsw-digital-logos/favicon/favicon-48x48.png?m=1681266912"> <link rel="apple-touch-icon" sizes="32x32" href="/_resources/vendor/nswdpc/waratah/themes/nswds/app/static/nsw-digital-logos/favicon/favicon-32x32.png?m=1681266912"> <link rel="apple-touch-icon" href="/_resources/vendor/nswdpc/waratah/themes/nswds/app/static/nsw-digital-logos/favicon/favicon-16x16.png?m=1681266912"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" async></script> <script> window.onload = function() { let dateElements = document.getElementsByClassName('dateElement'); for (let i = 0; i < dateElements.length; i++) { let dateElement = dateElements[i]; let parts = dateElement.textContent.split(/[-/]/).map(Number); let dateObj = new Date(parts[0], parts[1] - 1, parts[2]); let options = { year: 'numeric', month: 'long', day: 'numeric' }; dateElement.textContent = dateObj.toLocaleDateString('en-GB', options); } }; </script> <link rel="preload" href="https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,400;0,700;1,400&display=swap" as="style" onload="this.rel='stylesheet'"> <!-- FontAwesome --> <link rel="preload" href="_resources/themes/investnsw/dist/css/fontawesome.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'"> <noscript><link rel="stylesheet" href="_resources/themes/investnsw/dist/css/fontawesome.min.css"></noscript> <link rel="preload" href="_resources/themes/investnsw/dist/css/solid.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'"> <noscript><link rel="stylesheet" href="_resources/themes/investnsw/dist/css/solid.min.css"></noscript> <link rel="stylesheet" type="text/css" href="/_resources/themes/investnsw/dist/css/app.min.css?m=1710973785" /> <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,400;0,700;1,400&display=swap" media="screen" /> <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/icon?family=Material+Icons&display=block" media="screen" /> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-NWK9QKM');</script> <!-- End Google Tag Manager --> </head> <body class="nsw-body-content"> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NWK9QKM" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <nav class="nsw-skip nsw-skip--dark" aria-label="Skip to links"> <a href="/invest#main-nav"><span>Skip to navigation</span></a> <a href="/invest#main-content"><span>Skip to content</span></a> </nav> <script type="text/javascript"> const closeAlert = document.querySelectorAll('.js-close-alert'); if (closeAlert) { closeAlert.forEach((el) => { el.addEventListener('click', (e) => { e.preventDefault(); const alert = e.target.closest('.js-sitewide-message'); if (alert) { alert.style.display = 'none'; alert.setAttribute('aria-hidden', 'true'); el.setAttribute('aria-expanded', 'false'); } }); }); } </script> <div class="black-line-masthead"></div> <div class="nsw-masthead nsw-masthead--dark"> <div class="nsw-container"> <p>A NSW Government website</p> </div> </div> <header class="nsw-header"> <div class="nsw-header__container"> <div class="nsw-header__inner"> <div class="nsw-header__main" style=" display: flex; justify-content: center;"> <div class="nsw-header__waratah"> <a style="width: 17rem;" href="https://www.investment.nsw.gov.au/"> <img src="/assets/Uploads/NSW-Government-Investment-NSW-logo.svg" style="width: 100%; height: 100%;" alt="Investment NSW"> <span class="sr-only">NSW Government</span> </a> </div> <div class="nsw-header__name"> </div> </div> <div class="nsw-header__menu"> <button type="button" class="js-open-nav" aria-expanded="false" aria-controls="main-nav"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">menu</span> <span><span class="sr-only">Open</span> Menu</span> </button> </div> <div class="nsw-header__search search-and-contact"> <a href="/contact-us/" class="contact-header" title="Internal Link: Contact us" > Contact us </a> <button type="button" class="nsw-header-btn nsw-header-btn--search js-open-search" aria-expanded="false" aria-controls="header-search"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">search</span> <span class="nsw-header-btn__sub"><span class="sr-only">Show</span> Search</span> </button> </div> </div> <div id="header-search" class="nsw-header__search-area js-search-area" hidden> <form role="search" id="SearchForm_getSearchForm" action="/search/getSearchForm/" method="GET" enctype="application/x-www-form-urlencoded"> <label for="SearchForm_getSearchForm_Search" class="sr-only">Search site for:</label> <input id="SearchForm_getSearchForm_Search" name="Search" type="search" class="nsw-header__input js-search-input" value=""> <button class="nsw-icon-button nsw-icon-button--flex" type="submit"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">search</span> <span class="sr-only">Search</span> </button> </form> <button class="nsw-icon-button js-close-search" aria-expanded="true" aria-controls="header-search"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">close</span> <span class="sr-only">Close search</span> </button> </div> </div> </header> <nav class="nsw-main-nav js-mega-menu" id="main-nav" aria-label="Main menu"> <div class="nsw-main-nav__header"> <div class="nsw-main-nav__title">Menu</div> <button class="nsw-icon-button js-close-nav" type="button" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">close</span> <span class="sr-only">Close Menu</span> </button> </div> <ul class="nsw-main-nav__list" data-level="1"> <li> <a href="invest"> <span>Set up in NSW</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> <div class="nsw-main-nav__sub-nav" id="sub-nav-657" role="region" aria-label="Set up in NSW Submenu"> <div class="nsw-main-nav__header"> <button class="nsw-icon-button nsw-icon-button--flex js-close-sub-nav" type="button" aria-expanded="true" aria-controls="sub-nav-657" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_left</span> <span>Back<span class="sr-only"> to previous menu</span></span> </button> <button class="nsw-icon-button js-close-nav" type="button" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">close</span> <span class="sr-only">Close Menu</span> </button> </div> <div class="nsw-main-nav__title"> <a href="invest"> <span>Set up in NSW</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </a> </div> <div class="nsw-main-nav__description">Find out how you can set yourself and your business up for success in New South Wales.</div> <ul class="nsw-main-nav__sub-list" data-level="2"> <li> <a href="invest/welcome-to-nsw"> <span>Welcome to New South Wales</span> </a> </li> <li> <a href="invest/why-invest-in-nsw"> <span>Why invest in New South Wales</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> </li> <li> <a href="invest/living-in-sydney-and-nsw"> <span>Living and working in New South Wales</span> </a> </li> <li> <a href="https://www.investregional.nsw.gov.au/"> <span>Regional NSW</span> </a> </li> <li> <a href="invest/publications"> <span>Resources </span> </a> </li> <li> <a href="invest/how-we-can-help"> <span>How we can help</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> </li> </ul> </div> </li> <li> <a href="international-offices"> <span>International offices</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> <div class="nsw-main-nav__sub-nav" id="sub-nav-376" role="region" aria-label="International offices Submenu"> <div class="nsw-main-nav__header"> <button class="nsw-icon-button nsw-icon-button--flex js-close-sub-nav" type="button" aria-expanded="true" aria-controls="sub-nav-376" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_left</span> <span>Back<span class="sr-only"> to previous menu</span></span> </button> <button class="nsw-icon-button js-close-nav" type="button" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">close</span> <span class="sr-only">Close Menu</span> </button> </div> <div class="nsw-main-nav__title"> <a href="international-offices"> <span>International offices</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </a> </div> <div class="nsw-main-nav__description">Contact an office near you to find out how we can help grow your business in New South Wales or export to global customers.</div> <ul class="nsw-main-nav__sub-list" data-level="2"> <li> <a href="international-offices/americas"> <span>Americas</span> </a> </li> <li> <a href="international-offices/asean"> <span>ASEAN</span> </a> </li> <li> <a href="international-offices/greater-china"> <span>Greater China</span> </a> </li> <li> <a href="international-offices/india"> <span>India</span> </a> </li> <li> <a href="international-offices/middle-east"> <span>Middle East</span> </a> </li> <li> <a href="international-offices/north-asia"> <span>North Asia</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> </li> <li> <a href="international-offices/united-kingdom-europe-and-israel"> <span>United Kingdom, Europe and Israel</span> </a> </li> <li> <a href="/contact-us/"> <span>Contact us</span> </a> </li> </ul> </div> </li> <li> <a href="focus-sectors"> <span>Focus Sectors</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> <div class="nsw-main-nav__sub-nav" id="sub-nav-330" role="region" aria-label="Focus Sectors Submenu"> <div class="nsw-main-nav__header"> <button class="nsw-icon-button nsw-icon-button--flex js-close-sub-nav" type="button" aria-expanded="true" aria-controls="sub-nav-330" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_left</span> <span>Back<span class="sr-only"> to previous menu</span></span> </button> <button class="nsw-icon-button js-close-nav" type="button" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">close</span> <span class="sr-only">Close Menu</span> </button> </div> <div class="nsw-main-nav__title"> <a href="focus-sectors"> <span>Focus Sectors</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </a> </div> <div class="nsw-main-nav__description">Investment NSW helps businesses set up in Australia’s largest economy and connects them with opportunities that help them succeed.</div> <ul class="nsw-main-nav__sub-list" data-level="2"> <li> <a href="focus-sectors/manufacturing"> <span>Manufacturing</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> </li> <li> <a href="focus-sectors/clean-economy"> <span>Clean Economy</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> </li> <li> <a href="focus-sectors/technology"> <span>Technology</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> </li> <li> <a href="focus-sectors/health-and-life-sciences"> <span>Health and Life Sciences</span> </a> </li> <li> <a href="focus-sectors/defence"> <span>Defence</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> </li> <li> <a href="focus-sectors/space"> <span>Space</span> </a> </li> </ul> </div> </li> <li> <a href="innovation"> <span>Innovation</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> <div class="nsw-main-nav__sub-nav" id="sub-nav-641" role="region" aria-label="Innovation Submenu"> <div class="nsw-main-nav__header"> <button class="nsw-icon-button nsw-icon-button--flex js-close-sub-nav" type="button" aria-expanded="true" aria-controls="sub-nav-641" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_left</span> <span>Back<span class="sr-only"> to previous menu</span></span> </button> <button class="nsw-icon-button js-close-nav" type="button" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">close</span> <span class="sr-only">Close Menu</span> </button> </div> <div class="nsw-main-nav__title"> <a href="innovation"> <span>Innovation</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </a> </div> <div class="nsw-main-nav__description">At Investment NSW, we are dedicated to boosting research and development, fostering startups and innovation and growing priority sectors and precincts across the state. </div> <ul class="nsw-main-nav__sub-list" data-level="2"> <li> <a href="innovation/sydney-startup-hub"> <span>Sydney Startup Hub</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> </li> <li> <a href="innovation/western-sydney-startup-hub"> <span>Western Sydney Startup Hub</span> </a> </li> <li> <a href="innovation/nsw-innovation-and-productivity-council"> <span>NSW Innovation and Productivity Council</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> </li> <li> <a href="innovation/international-landing-pad"> <span>International Landing Pad</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> </li> <li> <a href="innovation/tech-central-scaleup-hub"> <span>Tech Central Scaleup Hub</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> </li> <li> <a href="innovation/precincts"> <span>Precincts</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> </li> </ul> </div> </li> <li> <a href="export"> <span>Export from NSW </span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> <div class="nsw-main-nav__sub-nav" id="sub-nav-656" role="region" aria-label="Export from NSW Submenu"> <div class="nsw-main-nav__header"> <button class="nsw-icon-button nsw-icon-button--flex js-close-sub-nav" type="button" aria-expanded="true" aria-controls="sub-nav-656" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_left</span> <span>Back<span class="sr-only"> to previous menu</span></span> </button> <button class="nsw-icon-button js-close-nav" type="button" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">close</span> <span class="sr-only">Close Menu</span> </button> </div> <div class="nsw-main-nav__title"> <a href="export"> <span>Export from NSW </span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </a> </div> <div class="nsw-main-nav__description">Export your products or services, by tapping into global contacts, and by accessing programs and grants. </div> <ul class="nsw-main-nav__sub-list" data-level="2"> <li> <a href="export/going-global-export-program"> <span>Going Global Export Program</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> </li> <li> <a href="export/capability-building-program"> <span>NSW Export Capability Building Program</span> </a> </li> <li> <a href="export/premiers-nsw-export-awards"> <span>Premier's NSW Export Awards</span> </a> </li> <li> <a href="export/export-programs-services-and-support"> <span>Export programs, services and support </span> </a> </li> <li> <a href="export/export-resources"> <span>Export Resources </span> </a> </li> </ul> </div> </li> <li> <a href="grants-and-rebates"> <span>Grants & Programs</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> <div class="nsw-main-nav__sub-nav" id="sub-nav-290" role="region" aria-label="Grants & Programs Submenu"> <div class="nsw-main-nav__header"> <button class="nsw-icon-button nsw-icon-button--flex js-close-sub-nav" type="button" aria-expanded="true" aria-controls="sub-nav-290" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_left</span> <span>Back<span class="sr-only"> to previous menu</span></span> </button> <button class="nsw-icon-button js-close-nav" type="button" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">close</span> <span class="sr-only">Close Menu</span> </button> </div> <div class="nsw-main-nav__title"> <a href="grants-and-rebates"> <span>Grants & Programs</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </a> </div> <div class="nsw-main-nav__description">Grants, funding and assistance programs to help your business succeed or recover.</div> <ul class="nsw-main-nav__sub-list" data-level="2"> <li> <a href="grants-and-rebates/mvp-ventures"> <span>MVP (Minimum Viable Product) Ventures</span> </a> </li> <li> <a href="grants-and-rebates/fostering-innovation-sponsorship-program"> <span>Fostering Innovation Sponsorship Program</span> </a> </li> <li> <a href="grants-and-rebates/boosting-business-innovation-program"> <span>Boosting Business Innovation Program</span> </a> </li> </ul> </div> </li> <li> <a href="news-and-events"> <span>News & Events</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> <div class="nsw-main-nav__sub-nav" id="sub-nav-12" role="region" aria-label="News & Events Submenu"> <div class="nsw-main-nav__header"> <button class="nsw-icon-button nsw-icon-button--flex js-close-sub-nav" type="button" aria-expanded="true" aria-controls="sub-nav-12" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_left</span> <span>Back<span class="sr-only"> to previous menu</span></span> </button> <button class="nsw-icon-button js-close-nav" type="button" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">close</span> <span class="sr-only">Close Menu</span> </button> </div> <div class="nsw-main-nav__title"> <a href="news-and-events"> <span>News & Events</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </a> </div> <div class="nsw-main-nav__description">Find everything you need to know about Investment NSW, right here.</div> <ul class="nsw-main-nav__sub-list" data-level="2"> <li> <a href="news-and-events/media-releases"> <span>Media releases and news</span> </a> </li> <li> <a href="news-and-events/events"> <span>Events</span> </a> </li> <li> <a href="news-and-events/videos"> <span>Videos</span> </a> </li> </ul> </div> </li> </ul> </nav> <main id="main-content" data-page-type="1.1"> <section class="nsw-section nsw-section--grey-03 nsw-section--no-padding" id="connecting-you-with-economic-opportunities" data-type="elementhomepageintro"> <section class="homepage-intro-block homepage-margin " style="transition: background 0.35s ease-in-out 0s; padding:0;background-position: 50%; background-size: cover;background-image:url(/assets/Uploads/opera-house-night__FocusFillWzE5MjAsODAwLCJ5IiwyMzld.webp);"> <div class="background-gradient"> <div class="nsw-container news-feed-content qualifer-content"> <div class="nsw-row"> <div class="nsw-col nsw-col-md-12 nsw-col-lg-12 content-column"> <h1><span class="nsw-h4" style="display:block;">Welcome to Investment NSW </span>Connecting you with economic opportunities </h1> <p style="font-size: 1.25rem; color: #cbedfd;"><strong>We have the connections in industry, academia, government and business to help you grow.</strong></p><p style="font-size: 1.25rem;"><strong>Start your journey:</strong></p> <div class="link-buttons-list nsw-grid"> <a href="/nsw-business/" class="link-container" loading="eager" style="" data-image="/assets/Uploads/opera-house-night__FocusFillWzE5MjAsODAwLCJ5IiwyMzld.webp" > <div class="card__link"> <div class="link-border"> <h2 style="display: flex; align-items:center; gap: 0.5rem;"><i class="material-icons nsw-material-icons nsw-card__icon" focusable="false" aria-hidden="true" style="">east</i>I'm a NSW business </h2> </div> </div> <!-- Lazy load images so they dont have to load on mouseover --> <img src="/assets/Uploads/opera-house-night__FocusFillWzE5MjAsODAwLCJ5IiwyMzld.webp" alt="" loading="lazy" tabindex="-1" style="border: 0;clip: rect(0 0 0 0);margin: -1px; overflow: hidden;padding: 0;position: absolute;white-space: nowrap;left:-10000px"> </a> <a href="/international-business/" class="link-container" loading="eager" style="" data-image="/assets/Uploads/Sydney_Harbour_1037380882__FocusFillWzE5MjAsODAwLCJ5IiwxMzld.webp" > <div class="card__link"> <div class="link-border"> <h2 style="display: flex; align-items:center; gap: 0.5rem;"><i class="material-icons nsw-material-icons nsw-card__icon" focusable="false" aria-hidden="true" style="">east</i>I'm an international business</h2> </div> </div> <!-- Lazy load images so they dont have to load on mouseover --> <img src="/assets/Uploads/Sydney_Harbour_1037380882__FocusFillWzE5MjAsODAwLCJ5IiwxMzld.webp" alt="" loading="lazy" tabindex="-1" style="border: 0;clip: rect(0 0 0 0);margin: -1px; overflow: hidden;padding: 0;position: absolute;white-space: nowrap;left:-10000px"> </a> <a href="https://www.nsw.gov.au/visas-and-migration" class="link-container" loading="eager" style="" data-image="/assets/images/bronte_beach__FocusFillWzE5MjAsODAwLCJ5IiwyMzld.webp" > <div class="card__link"> <div class="link-border"> <h2 style="display: flex; align-items:center; gap: 0.5rem;"><i class="material-icons nsw-material-icons nsw-card__icon" focusable="false" aria-hidden="true" style="">east</i>I want to work in NSW</h2> </div> </div> <!-- Lazy load images so they dont have to load on mouseover --> <img src="/assets/images/bronte_beach__FocusFillWzE5MjAsODAwLCJ5IiwyMzld.webp" alt="" loading="lazy" tabindex="-1" style="border: 0;clip: rect(0 0 0 0);margin: -1px; overflow: hidden;padding: 0;position: absolute;white-space: nowrap;left:-10000px"> </a> <a href="https://www.study.nsw.gov.au/" class="link-container" loading="eager" style="" data-image="/assets/Uploads/nighttime__FocusFillWzE5MjAsODAwLCJ5IiwyNDBd.webp" > <div class="card__link"> <div class="link-border"> <h2 style="display: flex; align-items:center; gap: 0.5rem;"><i class="material-icons nsw-material-icons nsw-card__icon" focusable="false" aria-hidden="true" style="">east</i>I want to study in NSW</h2> </div> </div> <!-- Lazy load images so they dont have to load on mouseover --> <img src="/assets/Uploads/nighttime__FocusFillWzE5MjAsODAwLCJ5IiwyNDBd.webp" alt="" loading="lazy" tabindex="-1" style="border: 0;clip: rect(0 0 0 0);margin: -1px; overflow: hidden;padding: 0;position: absolute;white-space: nowrap;left:-10000px"> </a> </div> </div> </div> </div> </div> </section> </section> <section class="nsw-section nsw-section--grey-04" id="a-framework-to-support-the-growth-of-focus-industries" data-type="elementcontent"> <div class="nsw-container"> <div class="basic-content slim centre" style=""> <h2 class="text-center">A framework to support the growth of focus industries</h2><p class="text-center">We’re taking a structured approach to developing and evaluating ideas, and implementing policies that deliver more and better jobs, globally competitive industries and a resilient economy.</p><p class="text-center"><a href="/invest/how-we-can-help/priority-industries/nsw-industry-development-framework/">Find out more</a></p> </div> </div> </section> <section class="nsw-section nsw-section--grey-04" id="sub-sectors-list" data-type="elementlist"> <div class="nsw-container"> <div class="nsw-grid"> <div class="nsw-col nsw-col-xs-12 nsw-col-sm-6 nsw-col-md-4 nsw-col-lg-4"> <div class="nsw-card nsw-card--highlight"> <div class="nsw-card__image "> <img src="/assets/Uploads/priority-sector-manufacturing__FocusFillWzUwMCwyMDAsInkiLDM0XQ.webp" alt="Manufacturing" loading="lazy"> </div> <div class="nsw-card__content"> <div class="nsw-card__title"> <a href="/focus-sectors/manufacturing/">Advanced Manufacturing</a> </div> <div class="nsw-card__copy"> <p>NSW is home to a range of highly innovative, competitive and world-leading manufacturers in industries such as space, medtech, agrifood, energy technology and defence.</p> </div> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </div> </div> </div> <div class="nsw-col nsw-col-xs-12 nsw-col-sm-6 nsw-col-md-4 nsw-col-lg-4"> <div class="nsw-card nsw-card--highlight"> <div class="nsw-card__image "> <img src="/assets/Uploads/New-Web-Net-Zero__FocusFillWzUwMCwyMDAsInkiLDQxXQ.webp" alt="Net zero" loading="lazy"> </div> <div class="nsw-card__content"> <div class="nsw-card__title"> <a href="/focus-sectors/clean-economy/">Clean Economy</a> </div> <div class="nsw-card__copy"> <p><span>The ‘Race to Zero’ is on and there is no better time to capitalise on the opportunity to establish and grow your business in Sydney and NSW.</span></p> </div> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </div> </div> </div> <div class="nsw-col nsw-col-xs-12 nsw-col-sm-6 nsw-col-md-4 nsw-col-lg-4"> <div class="nsw-card nsw-card--highlight"> <div class="nsw-card__image "> <img src="/assets/Uploads/New-Web-Technology__FocusFillWzUwMCwyMDAsInkiLDQxXQ.webp" alt="Technology" loading="lazy"> </div> <div class="nsw-card__content"> <div class="nsw-card__title"> <a href="/focus-sectors/technology/">Technology </a> </div> <div class="nsw-card__copy"> <p><span>From quantum to AI, robotics to video, NSW has a well-established yet highly innovative technology ecosystem. Our people and places make us one of the world’s best locations for technology companies. </span></p> </div> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </div> </div> </div> <div class="nsw-col nsw-col-xs-12 nsw-col-sm-6 nsw-col-md-4 nsw-col-lg-4"> <div class="nsw-card nsw-card--highlight"> <div class="nsw-card__image "> <img src="/assets/Uploads/New-Web-Health__FocusFillWzUwMCwyMDAsInkiLDQxXQ.webp" alt="Health and life sciences" loading="lazy"> </div> <div class="nsw-card__content"> <div class="nsw-card__title"> <a href="/focus-sectors/health-and-life-sciences/">Health & Life Sciences</a> </div> <div class="nsw-card__copy"> <p><span>With leading research capability and fast-growing life sciences industry, New South Wales offers advanced products and unparalleled investment opportunities.</span></p> </div> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </div> </div> </div> <div class="nsw-col nsw-col-xs-12 nsw-col-sm-6 nsw-col-md-4 nsw-col-lg-4"> <div class="nsw-card nsw-card--highlight"> <div class="nsw-card__image "> <img src="/assets/Uploads/New-Web-Defence-NA__FocusFillWzUwMCwyMDAsInkiLDQxXQ.webp" alt="Defence" loading="lazy"> </div> <div class="nsw-card__content"> <div class="nsw-card__title"> <a href="/focus-sectors/defence/">Defence</a> </div> <div class="nsw-card__copy"> <p><span>There has never been a better time to establish and grow your defence business in NSW. </span></p> </div> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </div> </div> </div> <div class="nsw-col nsw-col-xs-12 nsw-col-sm-6 nsw-col-md-4 nsw-col-lg-4"> <div class="nsw-card nsw-card--highlight"> <div class="nsw-card__image "> <img src="/assets/Industry-sectors/spacecraft-launch-v2__FocusFillWzUwMCwyMDAsInkiLDY2XQ.jpg" alt="" loading="lazy"> </div> <div class="nsw-card__content"> <div class="nsw-card__title"> <a href="/focus-sectors/space/">Space</a> </div> <div class="nsw-card__copy"> <p>From start-ups and SMEs through to established businesses and primes, NSW has the broadest and deepest range of space capabilities in Australia.</p> </div> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </div> </div> </div> </div> </div> </section> <section class="nsw-section" id="latest-news" data-type="elementnewsandevents"> <div class="nsw-container"> <section class="news-feed-block news-feed-block news-feed-block "> <div class="nsw-container nsw-container--text"> <div class="nsw-grid"> <div class="nsw-row nsw-row-md-6 nsw-row-lg-4 news-feed-content"> <h2 class="nsw-h2">Latest news</h2> </div> </div> </div> <div class="nsw-container"> <div class="nsw-grid"> <div class="nsw-col nsw-col-md-6 nsw-col-lg-4"> <div class="nsw-card nsw-card--highlight"> <div class="nsw-card__content"> <div class="nsw-card__date"> <time datetime="2024-11-07">07 Nov 2024</time> <!-- 01 March 2019 --> </div> <div class="nsw-card__title"> <a href="news-and-events/media-releases/international-education-celebrated-at-states-top-awards-2">International education celebrated at state’s top awards</a> </div> <div class="nsw-card__copy">NSW’s top international students, education providers, businesses and community groups have been named and celebrated at the prestigious 2024 NSW International Education Awards.</div> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </div> </div> </div> <div class="nsw-col nsw-col-md-6 nsw-col-lg-4"> <div class="nsw-card nsw-card--highlight"> <div class="nsw-card__content"> <div class="nsw-card__date"> <time datetime="2024-11-05">05 Nov 2024</time> <!-- 01 March 2019 --> </div> <div class="nsw-card__title"> <a href="news-and-events/media-releases/nsw-businesses-set-to-shine-at-world-leading-expo-in-china">NSW businesses set to shine at world-leading expo in China</a> </div> <div class="nsw-card__copy">The NSW Government is supporting 29 businesses across the food, drink, and health supplement sectors to exhibit their products at this week’s China International Import Expo (CIIE) – China’s premier import-focused six-day trade show.</div> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </div> </div> </div> <div class="nsw-col nsw-col-md-6 nsw-col-lg-4"> <div class="nsw-card nsw-card--highlight"> <div class="nsw-card__content"> <div class="nsw-card__date"> <time datetime="2024-10-12">12 Oct 2024</time> <!-- 01 March 2019 --> </div> <div class="nsw-card__title"> <a href="news-and-events/media-releases/north-coast-small-business-lights-up-paris-and-the-premiers-nsw-export-awards">North Coast small business lights up Paris and the Premier's NSW Export Awards</a> </div> <div class="nsw-card__copy">A small business from the state’s mid north coast which helped light up the Paris Olympics has been named NSW Exporter of the Year at the Premier’s NSW Export Awards.</div> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </div> </div> </div> <div class="nsw-row nsw-row-md-6 nsw-row-lg-4 news-feed-content"> <a href="news-and-events/media-releases" class="news-feed-button"> <span class="material-icons nsw-material-icons news-feed-arrow" focusable="false" aria-hidden="true">arrow_circle_down</span> View all news </a> </div> </div> </div> </section> </div> </section> <section class="nsw-section nsw-section--off-white nsw-section--half-padding" id="our-stories-heading" data-type="elementcontent"> <div class="nsw-container"> <div class="basic-content centre" style=""> <h2 class="text-center">Our stories</h2> </div> </div> </section> <section class="nsw-section nsw-section--off-white" id="our-stories-links" data-type="elementlist"> <div class="nsw-container"> <div class="nsw-grid"> <div class="nsw-col nsw-col-xs-12 nsw-col-sm-6 nsw-col-md-4 nsw-col-lg-4"> <div class="nsw-card nsw-card--highlight"> <div class="nsw-card__image"> <img src="/assets/blocks/content/4966/whyNSWVideoFrame__FocusFillWzUwMCwyMDAsInkiLDI0XQ.webp" alt="New South Wales Invest in opportunity video frame" loading="lazy"> </div> <div class="nsw-card__content"> <div class="nsw-card__title"> <a href="/news-and-events/videos/our-stories/#investment-nsw-why-nsw">Why NSW</a> </div> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </div> </div> </div> <div class="nsw-col nsw-col-xs-12 nsw-col-sm-6 nsw-col-md-4 nsw-col-lg-4"> <div class="nsw-card nsw-card--highlight"> <div class="nsw-card__image"> <img src="/assets/blocks/content/4969/CarlosPie__FocusFillWzUwMCwyMDAsInkiLDE4XQ.webp" alt="Carlos Pies video frame" loading="lazy"> </div> <div class="nsw-card__content"> <div class="nsw-card__title"> <a href="/news-and-events/videos/our-stories/#nsw-going-global-export-program-garlos-pies">NSW Going Global Export Program - Garlo's Pies</a> </div> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </div> </div> </div> <div class="nsw-col nsw-col-xs-12 nsw-col-sm-6 nsw-col-md-4 nsw-col-lg-4"> <div class="nsw-card nsw-card--highlight"> <div class="nsw-card__image"> <img src="/assets/Uploads/meetTheFoundersPropHero__FocusFillWzUwMCwyMDAsInkiLDQwXQ.webp" alt="Meet the founders PropHero video frame" loading="lazy"> </div> <div class="nsw-card__content"> <div class="nsw-card__title"> <a href="/news-and-events/videos/our-stories/#meet-the-founders-prophero">Meet the founders: PropHero</a> </div> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </div> </div> </div> </div> </div> </section> <section class="nsw-section nsw-section--no-padding" id="how-we-can-help-you-succeed" data-type="elementmediacontent"> <section class="media-content-block contain "> <div class="nsw-container"> <div class="nsw-grid nsw-row--reverse image-video-banner"> <div class="content-wrapper nsw-col nsw-col-lg-6"> <div> <h2 class="h2">How we can help you succeed</h2> <a href="/invest/how-we-can-help/" class="nsw-button dark-primary" title="Internal Link: Learn more" > Learn more </a> </div> </div> <div class="media-wrapper nsw-col nsw-col-lg-6"> <div class="image-video-banner__box"> <img class="image-video-banner__image" src="/assets/Uploads/Sydney_Harbour_1037380882__FocusFillWzEwMDAsMTEyNSwieCIsNTAwXQ.webp" alt="Photo of harbour courtesy of Destination NSW" loading="lazy" /> <p class="image-caption">Photo of harbour courtesy of Destination NSW</p> </div> </div> </div> </section> </section> </main> <footer class="nsw-footer wrth-footer--default"> <div class="nsw-footer__lower"> <div class="nsw-container"> <p> We acknowledge, respect and value Aboriginal peoples as the Traditional Custodians of the lands on which we walk, live and work. We pay our respects to Elders past and present. We acknowledge the diversity of Aboriginal people and their ongoing connection to their country, waters and seas. We also acknowledge our Aboriginal and Torres Strait Islander employees who are an integral part of our diverse workforce. </p> <div class="nsw-footer__content"> <p> </p><p> </p> </div> <hr> <div class="nsw-footer__links"> <ul> <li> <a href="https://www.nsw.gov.au" class="nsw-footer-links__link nsw-icon-button" style="text-decoration: underline;"> nsw.gov.au </a> </li> <li> <a href="/accessibility/" class="nsw-footer-links__link nsw-icon-button" style="text-decoration: underline;"> Accessibility </a> </li> <li> <a href="/copyright/" class="nsw-footer-links__link nsw-icon-button" style="text-decoration: underline;"> Copyright </a> </li> <li> <a href="https://www.nsw.gov.au/departments-and-agencies/premiers-department/contact-us/privacy" class="nsw-footer-links__link nsw-icon-button" style="text-decoration: underline;"> Privacy </a> </li> <li> <a href="https://www.nsw.gov.au/departments-and-agencies/premiers-department/access-to-information" class="nsw-footer-links__link nsw-icon-button" style="text-decoration: underline;"> Access to information </a> </li> </ul> <div class="nsw-footer__social wrth-social-links"> <a href="https://www.linkedin.com/company/investment-nsw/" rel="noopener" class="nsw-icon-button"> LinkedIn </a> </div> </div> <div class="nsw-footer__info"> <p class="nsw-footer__copyright"> Copyright © 2024 </p> </div> </div> </div> </footer> <div id="externalLinkIcon" style="visibility: hidden; display: none"> <span class="visually-hidden">External Link</span> <i class="fa-solid fa-up-right-from-square"></i> </div> <div id="downloadLinkIcon" style="visibility: hidden; display: none"> <span class="visually-hidden">Download file</span> <i class="fa-solid fa-cloud-arrow-down"></i> </div> <div id="anchorLinkIcon" style="visibility: hidden; display: none"> <span class="visually-hidden">Anchor Link</span> <i class="fa-solid fa-anchor"></i> </div> <script type="application/javascript" src="/_resources/themes/investnsw/dist/js/app.min.js?m=1710973785"></script> <script type="application/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.4/jquery.min.js" integrity="sha512-pumBsjNRGGqkPzKHndZMaAG+bir374sORyzM3uulLV14lN5LyykqNk8eEeUlUkB3U0M4FApyaHraT65ihJhDpQ==" crossorigin="anonymous"></script> <script type="application/javascript" src="/_resources/themes/nswds/app/frontend/dist/js/app.min.js?m=1710973785" async="async"></script> <script type="application/javascript" src="/_resources/themes/investnsw/dist/js/video-handler.js?m=1710973785"></script> </body> </html>