Particle Bento
▧ BlocksBento grid of image cards that dissolve into interactive particles on hover.
particlebentogridcanvashovergsapblock
No preview available
Canvas 2D + Bento Layout ~ Hover Each Card
Controls
4
60
5
Bento grid of image cards that dissolve into interactive particles on hover.
No preview available
Canvas 2D + Bento Layout ~ Hover Each Card
Blocks / React Component
Bento grid of image cards that dissolve into interactive particles on hover.
Copy the shadcn CLI command below. Replace YOUR_LICENSE_KEY with the license key from your FutureUI account — or log in and it will auto-fill for you.
npx shadcn@latest add "https://futureui.studio/api/registry/particle-bento.json?key=YOUR_LICENSE_KEY" // Requires: ParticleDispersion component (included)
import { ParticleBento } from './ParticleBento';
export default function Example() {
return (
<ParticleBento
sampleGap={4}
mouseRadius={60}
force={5}
cards={[
{
image: "/feature1.jpg",
title: "Analytics",
subtitle: "Real-time insights",
},
{
image: "/feature2.jpg",
title: "Dashboard",
subtitle: "At a glance",
},
]}
/>
);
}