import cx from 'classnames' import { useRouter } from 'next/router' import { useMainContext } from './context/MainContext' import { Link } from 'components/Link' export type BreadcrumbT = { title: string documentType?: string href?: string } type Props = { variant?: 'default' | 'large' } export const Breadcrumbs = ({ variant = 'default' }: Props) => { const router = useRouter() const pathWithLocale = `/${router.locale}${router.asPath.split('?')[0]}` // remove query string const { breadcrumbs } = useMainContext() return ( /* NOTE: The breadcrumbs class and the nav tag are used by the LUNR search scripts. The a tag generated by the Link is also used. If these change, please also change updating script/search/parse-page-sections-into-records.js. */ ) }