import { useRouter } from 'next/router' import { MarkGithubIcon } from '@primer/octicons-react' import { Link } from 'components/Link' import { useTranslation } from 'components/hooks/useTranslation' import { useMainContext } from 'components/context/MainContext' import { SidebarProduct } from './SidebarProduct' import { SidebarHomepage } from './SidebarHomepage' export const SidebarNav = () => { const router = useRouter() const { error, relativePath } = useMainContext() const { t } = useTranslation('header') return (