From dda6ad9fec3eca0d2aee20ca3fbd15d40350e397 Mon Sep 17 00:00:00 2001 From: John P Vajda Date: Fri, 5 Jun 2020 15:14:24 -0600 Subject: [PATCH] fixed sentence casing on navigation --- 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 719da60e8..3db818bf4 100644 --- a/src/components/Layout.js +++ b/src/components/Layout.js @@ -7,11 +7,11 @@ import styles from './Layout.module.scss'; 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 }) => (