diff --git a/README.md b/README.md index c0dafa9..b49eec7 100644 --- a/README.md +++ b/README.md @@ -74,6 +74,7 @@ This project uses the [Next.js App Router](https://nextjs.org/docs/app), and so - `/`: Home page of the application. It displays a list of projects that are available on the NEAR platform. - `/project/:projectId`: Displays the details of a specific project. It includes information about the project, such as the name, description, and the list of tags associated with the project. - `/category/:categoryId`: Displays a list of projects that are associated with a specific category. +- `/bookmarks`: Shows your projects bookmarked in local storage ### Global State diff --git a/app/bookmarked/_components/bookmarks.tsx b/app/bookmarks/_components/bookmarks.tsx similarity index 100% rename from app/bookmarked/_components/bookmarks.tsx rename to app/bookmarks/_components/bookmarks.tsx diff --git a/app/bookmarked/page.tsx b/app/bookmarks/page.tsx similarity index 100% rename from app/bookmarked/page.tsx rename to app/bookmarks/page.tsx diff --git a/components/ui/navbar.tsx b/components/ui/navbar.tsx index 69ea20d..fe12923 100644 --- a/components/ui/navbar.tsx +++ b/components/ui/navbar.tsx @@ -27,7 +27,7 @@ const routes: Route[] = [ }, { name: "Bookmarked Projects", - href: "/bookmarked", + href: "/bookmarks", }, ];