CINXE.COM
Our stories - 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>Our stories - Investment NSW</title> <meta property="og:type" content="website" /> <meta property="og:url" content="https://www.investment.nsw.gov.au/news-and-events/videos/our-stories/"> <meta property="og:title" content="Our stories"> <meta name="twitter:card" content="summary"> <meta name="twitter:site" content="Investment NSW"> <meta name="twitter:url" content="https://www.investment.nsw.gov.au/news-and-events/videos/our-stories/"> <meta name="twitter:title" content="Our stories"> <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="/news-and-events/videos/our-stories/#main-nav"><span>Skip to navigation</span></a> <a href="/news-and-events/videos/our-stories/#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 class="nsw-container nsw-p-bottom-xs"> <nav aria-label="Breadcrumb" class="nsw-breadcrumbs"> <ol class="nsw-breadcrumb__list" itemscope itemtype="https://schema.org/BreadcrumbList"> <li class="nsw-breadcrumb__item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem"> <a itemprop="item" href="/" class="nsw-breadcrumb__link"><span itemprop="name">Home</span></a> <meta itemprop="position" content="1" /> </li> <li class="nsw-breadcrumb__item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem"> <a itemprop="item" href="/news-and-events/" class="nsw-breadcrumb__link"><span itemprop="name">News & Events</span></a> <meta itemprop="position" content="2" /> </li> <li class="nsw-breadcrumb__item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem"> <a itemprop="item" href="/news-and-events/videos/" class="nsw-breadcrumb__link"><span itemprop="name">Videos</span></a> <meta itemprop="position" content="3" /> </li> <li class="nsw-breadcrumb__item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem"> <a itemprop="item" href="/news-and-events/videos/our-stories/" class="nsw-breadcrumb__link nsw-breadcrumb--current" aria-current="page"><span itemprop="name">Our stories</span></a> <meta itemprop="position" content="4" /> </li> </ol> </nav> </div> <div class="nsw-container nsw-p-top-sm nsw-p-bottom-lg" data-page-type="2"> <div class="nsw-layout"> <aside class="nsw-layout__sidebar nsw-layout__sidebar--desktop"> <nav class="nsw-side-nav" aria-labelledby="news-and-events"> <div class="nsw-side-nav__header" id="news-and-events"> <a href="/news-and-events/" class="nsw-side-nav__heading-link">News & Events</a> </div> <ul> <li> <a href="/news-and-events/media-releases/"> Media releases and news </a> </li> <li> <a href="/news-and-events/events/"> Events </a> </li> <li> <a href="/news-and-events/videos/"> Videos </a> </li> </ul> </nav> </aside> <main id="main-content" class="nsw-layout__main"> <div class="nsw-block"> <h1 class="main-page-title">Our stories</h1> </div> <section class="nsw-section" id="investment-nsw-why-nsw" data-type="elementvideo" data-page-type="2"> <h2 >Investment NSW - Why NSW?</h2> <figure class="nsw-media"> <div class="wrth-media__video nsw-media__video" style="max-width: 920px"> <iframe width="200" height="113" src="https://www.youtube.com/embed/HKWA13mXeHo?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen title="Investment NSW - Why NSW?"></iframe> </div> <div class="nsw-accordion js-accordion"> <div class="nsw-accordion__title">Read transcript of the 'Investment NSW - Why NSW?' video</div> <div class="nsw-accordion__content"> <p>New South Wales is Australia's biggest<br>state the engine room of growth and<br>Innovation its capital is Sydney the<br>nation's Global City Gateway for<br>international arrivals and Australia's<br>one trillion dollar stock of inbound<br>foreign direct investment including 58<br>of total Venture Capital New South Wales<br>generates a third of Australia's GDP<br>making its economy the nation's largest<br>and larger than those of Denmark Israel<br>Malaysia Singapore or Hong Kong located<br>within Asian time zones New South Wales<br>is globally connected through expanding<br>airport infrastructure and major deep<br>water ports including Sydney's famous<br>Harbor and the largest bulk handling<br>facility on Australia's East Coast Port<br>of Newcastle with a population of 8<br>million almost a third born overseas New<br>South Wales is one of the world's best<br>educated and most diverse communities<br>over 200 languages are spoken if it were<br>History New South Wales would rank<br>fourth in the world for workers with<br>tertiary qualifications Australia is<br>ranked equal first in the world for<br>technology Readiness and New South Wales<br>is home to its largest pool of qualified<br>ICT workers New South Wales ranks fifth<br>globally for overall investment in<br>research and development over 600<br>multinationals choose to base their<br>Regional headquarters in Sydney<br>the 11th most livable city in the world<br>further afield the state's regions offer<br>a wealth of talent and resources<br>New South Wales ranks third behind only<br>California and Singapore for its number<br>of startup Founders we aim to become<br>Australia's first two trillion dollar<br>economy after 2040. investment New South<br>Wales is working with business to create<br>new opportunities in its priority<br>sectors<br>find out more about the opportunities<br>New South Wales can create for you</p> </div> </div> </figure> </section> <section class="nsw-section" id="nsw-going-global-export-program-garlos-pies" data-type="elementvideo" data-page-type="2"> <h2 >NSW Going Global Export Program - Garlo's Pies</h2> <figure class="nsw-media"> <div class="wrth-media__video nsw-media__video" style="max-width: 920px"> <iframe width="200" height="113" src="https://www.youtube.com/embed/wYqiZOGSJwY?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen title="NSW Going Global Export Program - Garlo's Pies"></iframe> </div> <div class="nsw-accordion js-accordion"> <div class="nsw-accordion__title">Read transcript of the 'NSW Going Global Export Program - Garlo's Pies' video</div> <div class="nsw-accordion__content"> <p>[Music]</p><p>I'm the general manager at Gallows pies</p><p>so Gallo's pies were started in 2001 by</p><p>my father Sean his brother Nathan and</p><p>their father Terry having up a small pie</p><p>shop back in River Junction and they</p><p>opened up 13 more stores over the next</p><p>nine years of the hundreds or even</p><p>thousands of meat pie supplies or</p><p>bakeries in Australia were one of only</p><p>five that's approved to export meat what</p><p>that means is that we can share our</p><p>passion for Aussie pies with the world</p><p>there's a big step up from being a</p><p>domestic wholesaler and manufacturer to</p><p>an international exporter the New South</p><p>Wales Going Global program has helped us</p><p>work on our language and terminology</p><p>when dealing with larger accounts from</p><p>overseas when you're dealing with Japan</p><p>Taiwan and South Korea they all have</p><p>different ways of talking about moq's</p><p>lead times tariff quotas certificate of</p><p>Origins and it's stuff that we had to</p><p>learn in order to speak the right</p><p>language from the get-go one of the</p><p>biggest advantages of the New South</p><p>Wales Going Global program is the</p><p>networking with other exporters it is</p><p>really beneficial to talk to other</p><p>exporters about their techniques about</p><p>exporting overseas and having that</p><p>Network to bounce ideas off the best</p><p>advice that we've receive in the New</p><p>South Wales Going Global program is ask</p><p>what the customer wants it's very easy</p><p>to assume that because something works</p><p>in Australia that it's going to work in</p><p>Japan or what's going to work in Japan</p><p>is going to work in the Middle East so</p><p>it's really really important to ask what</p><p>the customer wants so you can get their</p><p>expectations from the outset</p><p>[Music]</p> </div> </div> </figure> </section> <section class="nsw-section" id="meet-the-founders-prophero" data-type="elementvideo" data-page-type="2"> <figure class="nsw-media"> <div class="wrth-media__video nsw-media__video" style="max-width: 920px"> <iframe width="200" height="113" src="https://www.youtube.com/embed/uxF2IObEzZg?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen title="Sydney Startup Hub - Meet the Founders of PropHero"></iframe> </div> <div class="nsw-accordion js-accordion"> <div class="nsw-accordion__title">Read transcript of the 'Meet the founders: PropHero' video</div> <div class="nsw-accordion__content"> <p><strong><span>Carol Friel, Associate Director, Entrepreneurship and Innovation Ecosystems, Investment NSW</span></strong><span> Hi everyone, I’m Carol and I’m part of the Entrepreneurship and Innovation Ecosystems team, part of Investment NSW. I’m here today at the Sydney Startup Hub with one of our amazing founders, Pablo who’s the co-founder of PropHero. Tell us a little bit about PropHero.</span></p><p><strong><span>Pablo </span></strong><span><strong>Gil Brusola</strong></span><strong><span>, PropHero</span></strong><span> So at PropHero we are digitising the property investment journey. So, our vision is why can you buy Amazon shares from your phone, but you can't buy property anywhere in the world.</span></p><p><strong><span>Carol Friel, Associate Director, Entrepreneurship and Innovation Ecosystems, Investment NSW </span></strong><span>That's quite an ambitious problem to be solving and a good market to be doing it in.</span></p><p><strong><span>Pablo </span></strong><span><strong>Gil Brusola</strong></span><strong><span>, PropHero</span></strong><span> We are very data backed like that's where Michael, my business partner, comes from. He has a double degree mathematician, like super bright guy. I strongly believe that ideas are worth 10, 15%.</span></p><p><strong><span>Carol Friel, Associate Director, Entrepreneurship and Innovation Ecosystems, Investment NSW </span></strong><span>Anyone can have an idea.</span></p><p><strong><span>Pablo </span></strong><span><strong>Gil Brusola</strong></span><strong><span>, PropHero</span></strong><span> Yes, it's just how you execute it and I think that's where both Michael and I have excelled on bringing the best talent to the team. We recently celebrated our first-year anniversary here.</span></p><p><strong><span>Carol Friel, Associate Director, Entrepreneurship and Innovation Ecosystems, Investment NSW </span></strong><span>Congratulations and you've been at the Sydney Startup Hub since the beginning.</span></p><p><strong><span>Pablo </span></strong><span><strong>Gil Brusola</strong></span><strong><span>, PropHero</span></strong><span> Since the beginning, yes.</span></p><p><strong><span>Carol Friel, Associate Director, Entrepreneurship and Innovation Ecosystems, Investment NSW </span></strong><span>Have you received any kind of government assistance?</span></p><p><strong><span>Pablo </span></strong><span><strong>Gil Brusola</strong></span><strong><span>, PropHero</span></strong><span> Yes, we got the MVP grant which was great. It really helps a lot, especially with the tech resources being so expensive. It definitely helps a lot. You get also from the community, like if you're missing on something you will share or they will say “hey have you applied for this?”, then you investigate a bit more.</span></p><p><strong><span>Carol Friel, Associate Director, Entrepreneurship and Innovation Ecosystems, Investment NSW </span></strong><span>Tell us a little bit about some accolades you've recently won.</span></p><p><strong><span>Pablo </span></strong><span><strong>Gil Brusola</strong></span><strong><span>, PropHero</span></strong><span> Yes, we won the Prop Tech Startup of the Year.</span></p><p><strong><span>Carol Friel, Associate Director, Entrepreneurship and Innovation Ecosystems, Investment NSW </span></strong><span>Congratulations!</span></p><p><strong><span>Pablo </span></strong><span><strong>Gil Brusola</strong></span><strong><span>, PropHero</span></strong><span> Yes, helps us building a lot of trust for our clients.</span></p><p><strong><span>Carol Friel, Associate Director, Entrepreneurship and Innovation Ecosystems, Investment NSW</span></strong><span> We look forward to looking at where PropHero is in 12 months’ time.</span></p><p><strong><span>Pablo </span></strong><span><strong>Gil Brusola</strong></span><strong><span>, PropHero</span></strong><span> Thank you very much. Just one last piece of advice, I mean it's a tough journey as I mentioned before. Like you have to be ready and committed to not have a vacation or being paid nothing. There's a lot to it but I mean it fulfills you a lot.</span></p><p><strong><span>Carol Friel, Associate Director, Entrepreneurship and Innovation Ecosystems, Investment NSW</span></strong><span> That’s great, thank you very much.</span></p><p><strong><span>Pablo </span></strong><span><strong>Gil Brusola</strong></span><strong><span>, PropHero </span></strong><span>Awesome, thank you.</span></p> </div> </div> </figure> </section> </main> </div> </div> <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> </body> </html>