diff --git a/web/app/components/DocSidebar.tsx b/web/app/components/DocSidebar.tsx index a91e41d..ded63cf 100644 --- a/web/app/components/DocSidebar.tsx +++ b/web/app/components/DocSidebar.tsx @@ -1,5 +1,9 @@ +"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" }, @@ -7,23 +11,33 @@ const sidebarItems = [ { 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 ( -