Powered by Mintlify
Auto-generate your docs
Install and configure shadcn/ui for Next.js.
init
npx shadcn@latest init
npx shadcn@latest add button
Button
import { Button } from "@/components/ui/button" export default function Home() { return ( <div> <Button>Click me</Button> </div> ) }