"use client" import { Navbar as UiNavbar, getNavbarItems } from "docs-ui" import { useSidebar } from "docs-ui" import { basePathUrl } from "../../utils/base-path-url" import { useMemo } from "react" import { config } from "../../config" const Navbar = () => { const { setMobileSidebarOpen, mobileSidebarOpen } = useSidebar() const navbarItems = useMemo( () => getNavbarItems({ basePath: config.baseUrl, activePath: process.env.NEXT_PUBLIC_BASE_PATH || "/user-guide", version: "v2", }), [] ) return ( ) } export default Navbar