Components
Loading preview...
A bento grid with magnification effect on hover.
npx shadcn@latest add https://21st.dev/r/0xUrvish/magnified-bento"use client";
import MagnifiedBento from "@/components/ui/magnified-bento";
export default function Demo() {
return (
<div className="flex items-center justify-center w-full min-h-screen bg-background p-8">
<MagnifiedBento />
</div>
);
}