- Fix text of download button - Small fix to styling on small devies - Fix mobile sidebar items using incorrect base url
40 lines
867 B
TypeScript
40 lines
867 B
TypeScript
"use client"
|
|
|
|
import { Navbar as UiNavbar, getNavbarItems } from "docs-ui"
|
|
import { useSidebar } from "docs-ui"
|
|
import { useMemo } from "react"
|
|
import { config } from "../../config"
|
|
import { basePathUrl } from "../../utils/base-path-url"
|
|
|
|
const Navbar = () => {
|
|
const { setMobileSidebarOpen, mobileSidebarOpen } = useSidebar()
|
|
|
|
const navbarItems = useMemo(
|
|
() =>
|
|
getNavbarItems({
|
|
basePath: config.baseUrl,
|
|
activePath: basePathUrl(),
|
|
version: "v2",
|
|
}),
|
|
[]
|
|
)
|
|
|
|
return (
|
|
<UiNavbar
|
|
logo={{
|
|
light: basePathUrl("/images/logo-icon.png"),
|
|
dark: basePathUrl("/images/logo-icon-dark.png"),
|
|
}}
|
|
items={navbarItems}
|
|
mobileMenuButton={{
|
|
setMobileSidebarOpen,
|
|
mobileSidebarOpen,
|
|
}}
|
|
isLoading={false}
|
|
showSearchOpener
|
|
/>
|
|
)
|
|
}
|
|
|
|
export default Navbar
|