CINXE.COM
Going Global Export Program - 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>Going Global Export Program - Investment NSW</title> <meta name="description" content="The NSW Going Global Export Program is designed to help businesses expand into international markets with confidence and ease. "> <meta property="og:type" content="website" /> <meta property="og:url" content="https://www.investment.nsw.gov.au/export/going-global-export-program/"> <meta property="og:title" content="Going Global Export Program"> <meta property="og:description" content="The NSW Going Global Export Program is designed to help businesses expand into international markets with confidence and ease. "> <meta property="og:image" content="https://www.investment.nsw.gov.au/assets/Uploads/GG-image__FocusFillWzEyMDAsNjMwLCJ5IiwwXQ.jpg"> <meta property="og:image:width" content="1200"> <meta property="og:image:height" content="630"> <meta name="twitter:card" content="summary"> <meta name="twitter:site" content="Investment NSW"> <meta name="twitter:url" content="https://www.investment.nsw.gov.au/export/going-global-export-program/"> <meta name="twitter:title" content="Going Global Export Program"> <meta name="twitter:description" content="The NSW Going Global Export Program is designed to help businesses expand into international markets with confidence and ease. "> <meta name="twitter:image" content="https://www.investment.nsw.gov.au/assets/Uploads/GG-image__FocusFillWzY0MCw2NDAsIngiLDI0Nl0.jpg"> <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="/export/going-global-export-program/#main-nav"><span>Skip to navigation</span></a> <a href="/export/going-global-export-program/#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> <div data-direct="1" data-side="0"> <div class="hero-banner-block-2022 none-background cover"> <div class="nsw-hero-banner nsw-hero-banner--light" > <div class="nsw-hero-banner__container"> <div class="nsw-hero-banner__wrapper"> <div class="nsw-hero-banner__content" style="z-index:10;"> <h1><span class="nsw-h4" style="display:block;">Helping you unlock international markets</span>Going Global Export Program</h1> <p class="nsw-intro">The NSW Going Global Export Program is designed to help businesses expand into international markets with confidence and ease.</p> </div> <div class="nsw-hero-banner__box" style="z-index:10;"> <img class="nsw-hero-banner__image" src="/assets/Export-images/GGEP-banner__FocusFillWzgyMCw0MjAsInkiLDE0XQ.png" alt="" loading="lazy" /> </div> </div> </div> </div> </div> </div> <main id="main-content" data-page-type="1.1"> <section class="nsw-section" id="new-intro" data-type="elementcontent"> <div class="nsw-container"> <div class="basic-content" style=""> <p><span>Whether you're new to exporting or looking to deepen your global presence, our program provides the essential tools, resources, and support needed to thrive in the international marketplace.</span><span> </span></p><p><span>Over the course of 4-6 months, participants will engage in online workshops, market intelligence briefings</span><span>,</span><span> and cultural training, ensuring they’re well-prepared for the complexities of global trade.</span><span> </span><span>The program also includes potential partner introductions and business matching services, as well as market visit programs, in-market assistance, and logistical support to help you establish a foothold in your target markets.</span><span> </span></p><p><span>Applicants need to meet eligibility criteria and be selected to participate in their nominated stream. Selected participants need to agree to the terms and conditions of program participation. </span><span> </span></p> </div> </div> </section> <section class="nsw-section" id="program-streams-for-2024-25" data-type="elementcontent"> <div class="nsw-container"> <div class="basic-content" style=""> <h2 >Program streams for 2024-25 </h2> <p><span>Investment NSW will deliver 17 tailored Going Global streams (a combination of target international market and industry sector) across 2024-25. Apply now for streams currently open for applications or register your interest for upcoming streams.</span><span> </span></p> </div> </div> </section> <section class="nsw-section" id="applications" 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-6 nsw-col-lg-6"> <div class="basic-content" style=""> <h2 >Apply now</h2> <h3>Going Global Export Program</h3><ul> <li><a href="/export/going-global-export-program/edtech-to-the-united-states-of-america/">EdTech to the United States of America</a></li> <li><a href="/export/going-global-export-program/fintech-to-the-united-states-of-america/">Fintech to the United States of America</a></li> <li><a href="/export/going-global-export-program/health-to-the-usa/">Health to the USA</a></li> </ul><h3>Other Investment NSW export initiatives</h3><ul> <li><a href="/export/going-global-export-program/construction-and-infrastructure-to-saudi-arabia/">Construction and Infrastructure to Saudi Arabia</a></li> <li><a href="/export/going-global-export-program/food-and-beverage-to-japan-2/">Food & Beverage to Japan</a></li> <li><a href="/news-and-events/events/2025/05/27/food-and-beverage-to-asean-thaifex-2025/">Food & Beverage to ASEAN: THAIFEX 2025</a></li> </ul> </div> </div> <div class="nsw-col nsw-col-xs-12 nsw-col-sm-6 nsw-col-md-6 nsw-col-lg-6"> <h2 >Applications open soon</h2> <div class="nsw-accordion js-accordion"> <div class="nsw-accordion__title">Technology</div> <div class="nsw-accordion__content"> <ul> <li><span>Cleantech to Singapore (March - May 2025)</span><span> </span></li> </ul> </div> <div class="nsw-accordion__title">Food and Beverage </div> <div class="nsw-accordion__content"> <ul> <li><span>Wine, Food & Beverage to North Asia (Korea and Japan) (January – June 2025)</span><span> </span></li> </ul> </div> <div class="nsw-accordion__title">Health</div> <div class="nsw-accordion__content"> <ul> <li><span>Life Sciences to the United States of America (January – June 2025)</span><span> </span></li> </ul> </div> <div class="nsw-accordion__title">Other consumer products </div> <div class="nsw-accordion__content"> <ul> <li><span class="TextRun Highlight SCXW133951971 BCX0"><span class="NormalTextRun SCXW133951971 BCX0">Agrifood, Food, </span><span class="NormalTextRun AdvancedProofingIssueV2Themed SCXW133951971 BCX0">Beverage</span><span class="NormalTextRun SCXW133951971 BCX0"> and Consumer Products to </span><span class="NormalTextRun SCXW133951971 BCX0">Greater China</span><span class="NormalTextRun SCXW133951971 BCX0"> (February - May 2025)</span></span><span class="EOP SCXW133951971 BCX0"> </span></li> </ul> </div> <div class="nsw-accordion__title">Streams currently in delivery </div> <div class="nsw-accordion__content"> <ul> <li><span>Mining Equipment, Technology and Service to India</span><span> </span></li> <li><span>Digital Tech to the United States of America</span><span> </span></li> <li><span>Digital Health to the United States of America</span><span> </span></li> <li><span>Cleantech to the USA</span><span> </span></li> <li><span>Natural and Organic Wine, Food & Beverage and Consumer Goods to the USA</span><span> </span></li> <li><span>Food and Beverage to the Middle East</span><span> </span></li> <li><span>Food and Beverage to the UK</span><span> </span></li> <li><span>Health & MedTech to the Middle East</span><span> </span></li> <li><span>Fintech to Indonesia</span><span> </span></li> <li><span>Wine to Vietnam</span></li> <li><span>Space to the United States of America</span></li> <li><span>Food and Beverage and Consumer Health products to Greater China</span></li> </ul> </div> </div> </div> </div> </div> </section> <section class=" nsw-section--half-padding" id="note" data-type="elementdecoratedcontent"> <div class="nsw-container"> <div class="nsw-callout nsw-section nsw-section--grey-04"> <div class="nsw-callout__content"> <h4>Note</h4> <p>You should participate in one stream at a time. Before applying, please compare key dates, key event, eligibility criteria and curriculum for each stream carefully.</p> </div> </div> </div> </section> <section class="nsw-section" id="past-streams" data-type="elementallinks"> <div class="nsw-container"> <h2 >Past streams</h2> <div class="nsw-link-list"> <ul> <li> <a href="/export/going-global-export-program/past/"> <span> See past steams where NSW businesses received support </span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </a> </li> </ul> </div> </div> </section> <section class="nsw-section" id="contact-us" data-type="elementcontent"> <div class="nsw-container"> <div class="basic-content" style=""> <h2 >Contact us</h2> <p>Contact the Investment NSW Concierge through the <a href="/contact-us/">webform</a>.</p> </div> </div> </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>