fix(notes): remove hardcoded sidebar note

This commit is contained in:
saravanakumardb1 2026-03-10 17:30:11 -07:00
parent 2abf983321
commit 437651965e

View File

@ -2,13 +2,12 @@
import Link from "next/link";
import { usePathname } from "next/navigation";
import { BookOpenText, House, Search, Settings, Sparkles, FolderKanban, ShieldCheck } from "lucide-react";
import { House, Search, Settings, Sparkles, FolderKanban, ShieldCheck } from "lucide-react";
import { PRODUCT_NAME } from "@/lib/product-config";
const navItems = [
{ href: "/dashboard", label: "Dashboard", icon: House },
{ href: "/workspaces", label: "Workspaces", icon: FolderKanban },
{ href: "/notes/note-prd-cutline", label: "Active Note", icon: BookOpenText },
{ href: "/reviews", label: "Reviews", icon: ShieldCheck },
{ href: "/search", label: "Search", icon: Search },
{ href: "/settings", label: "Settings", icon: Settings },