diff options
Diffstat (limited to 'packages/web/app/dashboard/components/ModileSidebar.tsx')
| -rw-r--r-- | packages/web/app/dashboard/components/ModileSidebar.tsx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/packages/web/app/dashboard/components/ModileSidebar.tsx b/packages/web/app/dashboard/components/ModileSidebar.tsx index c9a933fa..4bd6a347 100644 --- a/packages/web/app/dashboard/components/ModileSidebar.tsx +++ b/packages/web/app/dashboard/components/ModileSidebar.tsx @@ -1,5 +1,11 @@ import MobileSidebarItem from "./ModileSidebarItem"; -import { Tag, PackageOpen, Settings, Search } from "lucide-react"; +import { + Tag, + PackageOpen, + Settings, + Search, + ClipboardList, +} from "lucide-react"; import SidebarProfileOptions from "./SidebarProfileOptions"; export default async function MobileSidebar() { @@ -8,6 +14,7 @@ export default async function MobileSidebar() { <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={<Search />} path="/dashboard/search" /> + <MobileSidebarItem logo={<ClipboardList />} path="/dashboard/lists" /> <MobileSidebarItem logo={<Tag />} path="/dashboard/tags" /> <MobileSidebarItem logo={<Settings />} path="/dashboard/settings" /> <SidebarProfileOptions /> |
