diff --git a/apps/documentation/src/components/breadcrumbs/breadcrumbs.tsx b/apps/documentation/src/components/breadcrumbs/breadcrumbs.tsx index 036ab818..847942a5 100644 --- a/apps/documentation/src/components/breadcrumbs/breadcrumbs.tsx +++ b/apps/documentation/src/components/breadcrumbs/breadcrumbs.tsx @@ -15,7 +15,13 @@ export default function TuonoBreadcrumbs({ mb="md" mt="md" > - {children} diff --git a/apps/documentation/src/components/hero/hero.tsx b/apps/documentation/src/components/hero/hero.tsx index f3f68dbc..c484a054 100644 --- a/apps/documentation/src/components/hero/hero.tsx +++ b/apps/documentation/src/components/hero/hero.tsx @@ -25,7 +25,7 @@ export default function Hero(): JSX.Element {
- diff --git a/apps/documentation/src/components/mdx-provider/mdx-bold/mdx-bold.tsx b/apps/documentation/src/components/mdx-provider/mdx-bold/mdx-bold.tsx new file mode 100644 index 00000000..20d37034 --- /dev/null +++ b/apps/documentation/src/components/mdx-provider/mdx-bold/mdx-bold.tsx @@ -0,0 +1,5 @@ +import { Text, type TextProps } from '@mantine/core' + +export default function MdxBold(props: TextProps): JSX.Element { + return +} diff --git a/apps/documentation/src/components/mdx-provider/mdx-link/mdx-link.tsx b/apps/documentation/src/components/mdx-provider/mdx-link/mdx-link.tsx index 8e040d80..dedad629 100644 --- a/apps/documentation/src/components/mdx-provider/mdx-link/mdx-link.tsx +++ b/apps/documentation/src/components/mdx-provider/mdx-link/mdx-link.tsx @@ -27,7 +27,6 @@ export default function MdxLink( component={Link} {...props} target="_blank" - rightSection={} variant="transparent" style={{ height: '20px' }} mt={-2} diff --git a/apps/documentation/src/components/mdx-provider/mdx-provider.tsx b/apps/documentation/src/components/mdx-provider/mdx-provider.tsx index 0342d0ae..534a3482 100644 --- a/apps/documentation/src/components/mdx-provider/mdx-provider.tsx +++ b/apps/documentation/src/components/mdx-provider/mdx-provider.tsx @@ -6,6 +6,7 @@ import MdxPre from './mdx-pre' import MdxQuote from './mdx-quote' import MdxCode from './mdx-code' import MdxTitle from './mdx-title' +import MdxBold from './mdx-bold/mdx-bold' import MdxH2 from './mdx-h2/mdx-h2' interface MdxProviderProps { @@ -25,6 +26,7 @@ export default function MdxProvider({ code: MdxCode, h1: MdxTitle, h2: MdxH2, + strong: MdxBold, }} > {children} diff --git a/apps/documentation/src/components/mdx-provider/mdx-quote/mdx-quote.tsx b/apps/documentation/src/components/mdx-provider/mdx-quote/mdx-quote.tsx index a256f3d3..c0ca4171 100644 --- a/apps/documentation/src/components/mdx-provider/mdx-quote/mdx-quote.tsx +++ b/apps/documentation/src/components/mdx-provider/mdx-quote/mdx-quote.tsx @@ -8,7 +8,7 @@ export default function MdxQuote( <>