Skip to content

Commit

Permalink
Merge pull request #97 from newrelic/nav-sentence-case
Browse files Browse the repository at this point in the history
fixed sentence casing on navigation
  • Loading branch information
John P Vajda authored Jun 5, 2020
2 parents b2f72bd + dda6ad9 commit fb806be
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 @@ -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 }) => (
Expand Down

0 comments on commit fb806be

Please sign in to comment.