Feat: Navigation improvements & Todo list feature #22
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several significant changes to the
appandcomponentsdirectories, primarily focusing on layout enhancements, new features, and code improvements. The most important changes include the addition of a side navigation component, updates to the dashboard layout, and the introduction of a new Todo feature.Layout and Navigation Enhancements:
Restructured
DashboardPageLayout:app/dashboard/page.tsx[1] [2] [3] [4]Added Side Navigation Component:
SideNavcomponent to provide a consistent navigation experience across the application. (components/layout/sidenav.tsxcomponents/layout/sidenav.tsxR1-R195)SideNavcomponent. (app/layout.tsx[1] [2] [3]Todo Page and Components:
Created Todo Page:
TodoPagecomponent to manage and display todo items. (app/todo/page.tsxapp/todo/page.tsxR1-R52)Added Todo Input and List Components:
TodoInput: A component for adding new todo items. (components/todo/ToDoInput.tsxcomponents/todo/ToDoInput.tsxR1-R32)TodoList: A component for displaying and managing the list of todo items. (components/todo/ToDoList.tsxcomponents/todo/ToDoList.tsxR1-R91)Utility and Dependency Updates:
Added Todo Storage Utility:
localStorage. (lib/todoEntryStorage.tslib/todoEntryStorage.tsR1-R19)Updated Dependencies:
framer-motionto support animations in the side navigation. (package.json[1]pnpm-lock.yaml[2] [3]