* configured base paths + added development banner * fix typelist site url * added navbar and sidebar badges * configure algolia filters * remove AI assistant * remove unused imports * change navbar text and badge * lint fixes * fix build error * add to api reference rewrites * fix build error * fix build errors in user-guide * fix feedback component * add parent title to pagination * added breadcrumbs component * remove user-guide links * resolve todos * fix details about authentication * change documentation title * lint content
39 lines
881 B
TypeScript
39 lines
881 B
TypeScript
"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 (
|
|
<UiNavbar
|
|
logo={{
|
|
light: basePathUrl("/images/logo-icon.png"),
|
|
dark: basePathUrl("/images/logo-icon-dark.png"),
|
|
}}
|
|
items={navbarItems}
|
|
mobileMenuButton={{
|
|
setMobileSidebarOpen,
|
|
mobileSidebarOpen,
|
|
}}
|
|
isLoading={false}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export default Navbar
|