aboutsummaryrefslogtreecommitdiffstats
path: root/packages/web/app/dashboard/components/ModileSidebar.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/web/app/dashboard/components/ModileSidebar.tsx')
-rw-r--r--packages/web/app/dashboard/components/ModileSidebar.tsx11
1 files changed, 2 insertions, 9 deletions
diff --git a/packages/web/app/dashboard/components/ModileSidebar.tsx b/packages/web/app/dashboard/components/ModileSidebar.tsx
index 74cbacba..c9a933fa 100644
--- a/packages/web/app/dashboard/components/ModileSidebar.tsx
+++ b/packages/web/app/dashboard/components/ModileSidebar.tsx
@@ -1,5 +1,5 @@
import MobileSidebarItem from "./ModileSidebarItem";
-import { Archive, Star, Tag, PackageOpen, Settings } from "lucide-react";
+import { Tag, PackageOpen, Settings, Search } from "lucide-react";
import SidebarProfileOptions from "./SidebarProfileOptions";
export default async function MobileSidebar() {
@@ -7,14 +7,7 @@ export default async function MobileSidebar() {
<aside className="w-full">
<ul className="flex justify-between space-x-2 border-b-black bg-gray-100 px-5 py-2 pt-5">
<MobileSidebarItem logo={<PackageOpen />} path="/dashboard/bookmarks" />
- <MobileSidebarItem
- logo={<Star />}
- path="/dashboard/bookmarks/favourites"
- />
- <MobileSidebarItem
- logo={<Archive />}
- path="/dashboard/bookmarks/archive"
- />
+ <MobileSidebarItem logo={<Search />} path="/dashboard/search" />
<MobileSidebarItem logo={<Tag />} path="/dashboard/tags" />
<MobileSidebarItem logo={<Settings />} path="/dashboard/settings" />
<SidebarProfileOptions />