"use client"; import Link from "next/link"; import { usePathname, useSelectedLayoutSegment } from "next/navigation"; import { Button } from "@/components/ui/button"; const menuItems = [ { text: "Notes", href: "/notes", }, { text: "Projects", href: "/projects", }, ] as const; const Menu = () => { const pathname = usePathname(); const segment = useSelectedLayoutSegment() || ""; return ( ); }; export { Menu };