Bento Grid
componentA responsive bento layout with span-friendly cards. Great for feature sections.
Fast
Ships in milliseconds
Simple
One command
Yours
Own the code
Composable
Mix and match
Installation
Namespace
npx shadcn@latest add @soultel/bento-gridURL
npx shadcn@latest add https://asafefe.dev/r/bento-grid.jsonUsage
import { BentoGrid, BentoCard } from "@/components/bento-grid"
export function Example() {
return (
<BentoGrid>
<BentoCard className="sm:col-span-2" title="Fast" description="Ships in milliseconds" />
<BentoCard title="Simple" description="One command" />
</BentoGrid>
)
}