import { PageLink } from 'shared/components/page-link.mjs' import { useTranslation } from 'next-i18next' import { components } from 'shared/components/mdx/index.mjs' export const ns = ['modal'] export const MdxWrapper = ({ title = false, path, language, children }) => { const { t } = useTranslation(ns) const slug = `${language === 'en' ? '' : '/' + language}/docs/${path}` return ( <> {title ?