From 69fc314e40f03803acf6d4c02415e9edc0141d2f Mon Sep 17 00:00:00 2001 From: Tim Glaser Date: Mon, 18 May 2020 14:56:14 -0700 Subject: [PATCH] fix: correct header/footer urls --- src/components/Layout.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/Layout.js b/src/components/Layout.js index 6f6f3b83b..8077bcba1 100644 --- a/src/components/Layout.js +++ b/src/components/Layout.js @@ -6,11 +6,11 @@ import Header from './Header'; import './styles.scss'; const pages = [ - { displayName: 'Collect Data', url: 'collect-data' }, - { displayName: 'Explore Data', url: 'explore-data' }, - { displayName: 'Build Apps', url: 'build-apps' }, - { displayName: 'Automate Workflows', url: 'automate-workflows' }, - { displayName: 'Developer Docs', url: 'docs' }, + { displayName: 'Collect Data', url: '/collect-data' }, + { displayName: 'Explore Data', url: '/explore-data' }, + { displayName: 'Build Apps', url: '/build-apps' }, + { displayName: 'Automate Workflows', url: '/automate-workflows' }, + { displayName: 'Developer Docs', url: '/docs' }, ]; const Layout = ({ children }) => (