"use client" import Link from "next/link" import { usePathname } from "next/navigation" import { useState } from "react" import { Menu } from "lucide-react" const sidebarItems = [ { title: "Introduction", href: "/docs/introduction" }, { title: "Installation", href: "/docs/installation" }, { title: "Getting Started", href: "/docs/getting-started" }, { title: "Features", href: "/docs/features" }, { title: "API", href: "/docs/api" }, { title: "Guides", href: "/guides" }, { title: "FAQ", href: "/docs/faq" }, ] export default function DocSidebar() { const pathname = usePathname() const [isOpen, setIsOpen] = useState(false) return ( ) }