Skip to content

Commit

Permalink
fix: correct header/footer urls
Browse files Browse the repository at this point in the history
  • Loading branch information
timglaser committed May 18, 2020
1 parent 447e68c commit 69fc314
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/Layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 }) => (
Expand Down

0 comments on commit 69fc314

Please sign in to comment.