aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/dashboard/sidebar/ModileSidebar.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/components/dashboard/sidebar/ModileSidebar.tsx')
-rw-r--r--apps/web/components/dashboard/sidebar/ModileSidebar.tsx14
1 files changed, 6 insertions, 8 deletions
diff --git a/apps/web/components/dashboard/sidebar/ModileSidebar.tsx b/apps/web/components/dashboard/sidebar/ModileSidebar.tsx
index 7306308d..635f63bd 100644
--- a/apps/web/components/dashboard/sidebar/ModileSidebar.tsx
+++ b/apps/web/components/dashboard/sidebar/ModileSidebar.tsx
@@ -1,10 +1,5 @@
-import {
- ClipboardList,
- PackageOpen,
- Search,
- Settings,
- Tag,
-} from "lucide-react";
+import HoarderLogoIcon from "@/public/icons/logo-icon.svg";
+import { ClipboardList, Search, Settings, Tag } from "lucide-react";
import MobileSidebarItem from "./ModileSidebarItem";
import SidebarProfileOptions from "./SidebarProfileOptions";
@@ -13,7 +8,10 @@ export default async function MobileSidebar() {
return (
<aside className="w-full">
<ul className="flex justify-between space-x-2 border-b-black px-5 py-2 pt-5">
- <MobileSidebarItem logo={<PackageOpen />} path="/dashboard/bookmarks" />
+ <MobileSidebarItem
+ logo={<HoarderLogoIcon className="w-5 fill-foreground" />}
+ path="/dashboard/bookmarks"
+ />
<MobileSidebarItem logo={<Search />} path="/dashboard/search" />
<MobileSidebarItem logo={<ClipboardList />} path="/dashboard/lists" />
<MobileSidebarItem logo={<Tag />} path="/dashboard/tags" />