DocsCardCardUse the Card component in your MDX documentationUsage Add it to your MDX components. import { Card, Cards } from 'next-docs-ui/mdx' <MDX components={{ Card: props => <Card {...props} />, Cards: props => <Cards {...props} /> }} /> Cards The container of cards. Card The component to redirect users. PropTypeDefaulttitlestring-descriptionstring-iconReactNode-hrefstring- Example Pass the href, title and description. <Cards> <Card href="https://nextjs.org/docs/app/building-your-application/data-fetching/fetching-caching-and-revalidating" title="Fetching, Caching, and Revalidating" description="Learn more about caching in Next.js" /> </Cards> Fetching, Caching, and RevalidatingLearn more about caching in Next.js With Icons import { HomeIcon } from 'lucide-react' <Cards> <Card icon={<HomeIcon />} href="/" title="Home" description="Go back to home" /> </Cards> HomeGo back to homeLast updated on AccordionCode Block