diff --git a/src/components/Nav/VerticalNav.js b/src/components/Nav/VerticalNav.js index 34341dc8..7e4af105 100755 --- a/src/components/Nav/VerticalNav.js +++ b/src/components/Nav/VerticalNav.js @@ -10,76 +10,63 @@ export const VerticalNav = props => { 'secondary-nav-item-pf': true, active: window.location.pathname === '/' }); + + const navItems = ([{ + href: '/overview', + text: 'Overview', + className: cx({ + 'list-group-item': true, + 'secondary-nav-item-pf': true, + active: window.location.pathname === '/' + }), + children: [{ + href: '/projects', + text: 'Projects' + },{ + href: '/stages', + text: 'Stages' + }] + },{ + href: '/ipsum', + text: 'Ipsum' + }, { + href: '/dolor', + text: 'Dolor' + }, { + href: '/amet', + text: 'Amet' + }, { + href: '/orbis', + text: 'Orbis' + }]); + return (