Skip to content

Commit

Permalink
#66 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
s-orug committed Nov 27, 2022
1 parent 5113f1c commit 6fe28ef
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 25 deletions.
47 changes: 23 additions & 24 deletions client/src/components/LeftSideNavBar/LeftSideNavBarData.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,26 @@
//import * as IoIcons from 'react-icons/io';

export const LeftSideNavBarData = [
{
title: 'Home',
path: '/',
//icon: <AiIcons.AiFillHome />,
classname: 'nav-text'
},
{
title: 'Browse',
path: '/browse',
//icon: <AiIcons.AiOutlineSearch />,
classname: 'nav-text'
},
{
title: 'About',
path: '/about',
classname: 'nav-text'
},
{
title: 'Contact Us',
path: '/contactus',
classname: 'nav-text'
}
];

{
title: "Home",
path: "/",
//icon: <AiIcons.AiFillHome />,
classname: "nav-text",
},
{
title: "Browse",
path: "/browse",
//icon: <AiIcons.AiOutlineSearch />,
classname: "nav-text",
},
{
title: "About",
path: "/about",
classname: "nav-text",
},
{
title: "Contact Us",
path: "/contactus",
classname: "nav-text",
},
];
2 changes: 1 addition & 1 deletion client/src/views/CreateAccount/Form.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ const Form = () => {
)
}

export default Form
export default Form

0 comments on commit 6fe28ef

Please sign in to comment.