aboutsummaryrefslogtreecommitdiffstats
path: root/packages/web/app/dashboard/components/SidebarItem.tsx
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-02-09 15:32:04 +0000
committerMohamedBassem <me@mbassem.com>2024-02-09 15:32:04 +0000
commit4fae8f04f546d2b3f6053870d93385fa36af4742 (patch)
treefbf91f3c3c3d2bd85e9e4cfc8200d275a78fb700 /packages/web/app/dashboard/components/SidebarItem.tsx
parentb25f17509e704eb41523bf455a33804cabf8aaca (diff)
downloadkarakeep-4fae8f04f546d2b3f6053870d93385fa36af4742.tar.zst
[ui] Adding the favourites and archive pages
Diffstat (limited to 'packages/web/app/dashboard/components/SidebarItem.tsx')
-rw-r--r--packages/web/app/dashboard/components/SidebarItem.tsx30
1 files changed, 30 insertions, 0 deletions
diff --git a/packages/web/app/dashboard/components/SidebarItem.tsx b/packages/web/app/dashboard/components/SidebarItem.tsx
new file mode 100644
index 00000000..e6a00d72
--- /dev/null
+++ b/packages/web/app/dashboard/components/SidebarItem.tsx
@@ -0,0 +1,30 @@
+"use client";
+
+import { cn } from "@/lib/utils";
+import Link from "next/link";
+import { usePathname } from "next/navigation";
+
+export default function SidebarItem({
+ name,
+ logo,
+ path,
+}: {
+ name: string;
+ logo: React.ReactNode;
+ path: string;
+}) {
+ const currentPath = usePathname();
+ return (
+ <li
+ className={cn(
+ "rounded-lg hover:bg-slate-100",
+ path == currentPath ? "bg-slate-100" : "",
+ )}
+ >
+ <Link href={path} className="flex w-full space-x-2 px-3 py-2">
+ {logo}
+ <span className="my-auto"> {name} </span>
+ </Link>
+ </li>
+ );
+}