diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index e3b7829..071fced 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -9,7 +9,8 @@ import Home from './components/Home'; import ProfileUpdate from './components/ProfileUpdatePage'; import Calendar from './components/calendar/calendar'; import KanbanBoard from './components/kanbanBoard/kanbanBoard'; -import IconSideNav from './components/IconSideNav'; // Import IconSideNav +import IconSideNav from './components/IconSideNav'; +import Eisenhower from './components/EisenhowerMatrix/Eisenhower'; const App = () => { return ( @@ -27,6 +28,7 @@ const App = () => { } /> } /> } /> + } /> diff --git a/frontend/src/components/the_eisenhower_matrix/Eisenhower.jsx b/frontend/src/components/EisenhowerMatrix/Eisenhower.jsx similarity index 100% rename from frontend/src/components/the_eisenhower_matrix/Eisenhower.jsx rename to frontend/src/components/EisenhowerMatrix/Eisenhower.jsx diff --git a/frontend/src/components/IconSideNav.jsx b/frontend/src/components/IconSideNav.jsx index c87219c..f9a5eb5 100644 --- a/frontend/src/components/IconSideNav.jsx +++ b/frontend/src/components/IconSideNav.jsx @@ -11,8 +11,8 @@ const menuItems = [ { id: 0, path: "/", icon: , logo: homeLogo }, { id: 1, path: "/tasks", icon: , logo: planLogo }, { id: 2, path: "/calendar", icon: , logo: calendarLogo }, - { id: 3, path: "/pie", icon: , logo: pieLogo }, - { id: 4, path: "/plus", icon: , logo: plusLogo }, + { id: 3, path: "/analytic", icon: , logo: pieLogo }, + { id: 4, path: "/priority", icon: , logo: plusLogo }, ]; const IconSideNav = () => {