"use client"; import { usePathname } from "next/navigation"; import { CommandPalette } from "./CommandPalette"; // 全局挂载命令面板(⌘K):读当前 pathname 注入项目上下文。 // 放在 RootLayout 内,对所有页面生效。 export function CommandPaletteMount() { const pathname = usePathname(); return ; }