docs: improve UX of recipe learning path (#5477)

* docs: improve UX of recipe learning path

* fix icon colors
This commit is contained in:
Shahed Nasser
2023-10-26 16:05:17 +03:00
committed by GitHub
parent ea2ee343f0
commit 7f9c4dea66
9 changed files with 231 additions and 164 deletions
@@ -9,6 +9,7 @@ import { useThemeConfig } from "@docusaurus/theme-common"
import { ThemeConfig } from "@medusajs/docs"
import SearchProvider from "../Search"
import LearningPathProvider from "../LearningPath"
import SkipToContent from "@theme/SkipToContent"
type DocsProvidersProps = {
children?: React.ReactNode
@@ -25,7 +26,10 @@ const DocsProviders = ({ children }: DocsProvidersProps) => {
<ModalProvider>
<SearchProvider>
<LearningPathProvider>
<NotificationProvider>{children}</NotificationProvider>
<NotificationProvider>
<SkipToContent />
{children}
</NotificationProvider>
</LearningPathProvider>
</SearchProvider>
</ModalProvider>