diff options
| author | MohamedBassem <me@mbassem.com> | 2024-03-02 14:23:46 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-03-02 14:23:46 +0000 |
| commit | cd623ad9d6281389b0a092520c777567fcf5464b (patch) | |
| tree | 33af8f21d741ed6455ad4b90944c272a99fdd58c /packages/web/app/dashboard/components/ModileSidebar.tsx | |
| parent | eeae96553c204097dec8a3c35d86533b3ce055d9 (diff) | |
| download | karakeep-cd623ad9d6281389b0a092520c777567fcf5464b.tar.zst | |
feature: Add an 'All Lists' page
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 /> |
