Components
Loading preview...
Transforms any text into a GitHub-style commits grid, visually representing the text as contribution blocks.
@gonzalochale
npx shadcn@latest add https://21st.dev/r/gonzalochale/commits-gridimport * as React from "react"
import { CommitsGrid } from "@/components/ui/commits-grid"
const CommitsGridDemo = () => {
return <CommitsGrid text="21st" />
}
export { CommitsGridDemo }