{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "glassmorphism-testimonials-block-shadcnui", "type": "registry:block", "title": "Glassmorphism Testimonials", "description": "Customer testimonials with glassmorphism cards, star ratings, and hover effects", "registryDependencies": [ "button" ], "dependencies": [ "framer-motion", "react" ], "files": [ { "path": "@uitripled/react-shadcn/src/components/sections/glassmorphism-testimonials-block.tsx", "content": "\"use client\";\n\nimport { Card } from \"@/components/ui/card\";\nimport { Star } from \"lucide-react\";\n\nexport function GlassmorphismTestimonialsBlock() {\n const testimonials = [\n {\n content:\n \"This platform has completely transformed how we build products. The speed and reliability are unmatched.\",\n author: \"Sarah Johnson\",\n role: \"CTO at TechCorp\",\n rating: 5,\n },\n {\n content:\n \"Best investment we've made this year. Our team's productivity has increased dramatically.\",\n author: \"Michael Chen\",\n role: \"Product Manager at StartupXYZ\",\n rating: 5,\n },\n {\n content:\n \"The attention to detail and user experience is exceptional. Highly recommend to any team.\",\n author: \"Emily Rodriguez\",\n role: \"Head of Engineering at ScaleUp\",\n rating: 5,\n },\n ];\n\n return (\n
\n
\n
\n

\n Loved by teams everywhere\n

\n

\n See what our customers have to say\n

\n
\n\n
\n {testimonials.map((testimonial, index) => (\n \n
\n {[...Array(testimonial.rating)].map((_, i) => (\n \n ))}\n
\n

\n \"{testimonial.content}\"\n

\n
\n

\n {testimonial.author}\n

\n

\n {testimonial.role}\n

\n
\n \n ))}\n
\n
\n
\n );\n}\n", "type": "registry:block", "target": "components/uitripled/glassmorphism-testimonials-block-shadcnui.tsx" } ] }