{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "feature-cards-block-shadcnui", "type": "registry:block", "title": "Feature Cards Grid", "description": "Three feature cards with icons, hover effects, and glassmorphism styling", "registryDependencies": [ "button", "card" ], "dependencies": [ "framer-motion", "react" ], "files": [ { "path": "@uitripled/react-shadcn/src/components/sections/feature-cards-block.tsx", "content": "\"use client\";\n\nimport { Card } from \"@/components/ui/card\";\nimport { Shield, Sparkles, Zap } from \"lucide-react\";\n\nexport function FeatureCardsBlock() {\n const features = [\n {\n icon: Zap,\n title: \"Lightning Fast\",\n description:\n \"Built for speed with optimized performance and instant loading times.\",\n },\n {\n icon: Shield,\n title: \"Secure by Default\",\n description:\n \"Enterprise-grade security with built-in protection and compliance.\",\n },\n {\n icon: Sparkles,\n title: \"Beautiful Design\",\n description: \"Pixel-perfect interfaces that users love to interact with.\",\n },\n ];\n\n return (\n
\n
\n
\n

\n Everything you need\n

\n

\n Powerful features that help you build better products faster\n

\n
\n\n
\n {features.map((feature, index) => (\n \n
\n \n
\n

\n {feature.title}\n

\n

\n {feature.description}\n

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