Isometric Testimonial Grid
▧ BlocksDraggable isometric testimonial card grid with glow effects and momentum scrolling.
testimonialisometricgriddraggsapblock
No preview available
GSAP + Isometric CSS ~ Drag to Explore
Controls
#9333ea
0.8
Draggable isometric testimonial card grid with glow effects and momentum scrolling.
No preview available
GSAP + Isometric CSS ~ Drag to Explore
Blocks / React Component
Draggable isometric testimonial card grid with glow effects and momentum scrolling.
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/isometric-testimonial-grid.json?key=YOUR_LICENSE_KEY" import { IsometricTestimonialGrid } from './IsometricTestimonialGrid';
export default function Example() {
return (
<IsometricTestimonialGrid
accentColor="#9333ea"
glowIntensity={0.8}
testimonials={[
{
id: "1",
name: "Jane Doe",
role: "CEO at Acme",
text: "This product changed everything for our team.",
avatarUrl: "/avatar1.jpg",
size: "tall",
},
{
id: "2",
name: "John Smith",
role: "Developer",
text: "Incredible DX and performance.",
avatarUrl: "/avatar2.jpg",
size: "standard",
},
]}
/>
);
}