diff --git a/apps/landing/src/app/(detail)/docs/api/box/page.mdx b/apps/landing/src/app/(detail)/docs/api/box/page.mdx index 18cbc723..48d2d646 100644 --- a/apps/landing/src/app/(detail)/docs/api/box/page.mdx +++ b/apps/landing/src/app/(detail)/docs/api/box/page.mdx @@ -1,5 +1,5 @@ export const metadata = { - title: "Box", + title: 'Box', } # Box @@ -8,23 +8,22 @@ The `Box` component is a layout primitive that can be used to create any kind of It is just a `div` with some styles. - ## How to use ```jsx // Before - + // After -
+
``` -You can use the as prop to change the element type. +You can use the `as` prop to change the element type. ```jsx // Before - + // After - + ``` diff --git a/apps/landing/src/app/(detail)/docs/api/button/page.mdx b/apps/landing/src/app/(detail)/docs/api/button/page.mdx index 47dde394..fc8079ee 100644 --- a/apps/landing/src/app/(detail)/docs/api/button/page.mdx +++ b/apps/landing/src/app/(detail)/docs/api/button/page.mdx @@ -1,16 +1,17 @@ export const metadata = { - title: "Button", + title: 'Button', } # Button -The Button component is a simple button component that can be used to trigger actions. +The `Button` component is a simple button component that can be used to trigger actions. +## How to use ```jsx // Before -