{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "glassmorphism-minimal-metrics-block-shadcnui", "type": "registry:block", "title": "Glassmorphism Minimal Metrics", "description": "Focused metric cards with glass surfaces, subtle motion, and concierge insight CTA banner", "registryDependencies": [ "button" ], "dependencies": [ "framer-motion", "react" ], "files": [ { "path": "@uitripled/react-shadcn/src/components/sections/glassmorphism-minimal-metrics-block.tsx", "content": "\"use client\";\n\nimport { motion, type Variants } from \"framer-motion\";\n\nimport { Badge } from \"@/components/ui/badge\";\nimport { Button } from \"@/components/ui/button\";\nimport { Card } from \"@/components/ui/card\";\nimport { ArrowUpRight, Users, Zap } from \"lucide-react\";\n\nconst metrics = [\n {\n label: \"Activated teams\",\n value: \"1.2k\",\n delta: \"+18%\",\n description: \"teams shipping faster\",\n },\n {\n label: \"Daily automations\",\n value: \"58\",\n delta: \"+42%\",\n description: \"manual tasks replaced\",\n },\n {\n label: \"Customer NPS\",\n value: \"71\",\n delta: \"+9\",\n description: \"in just three sprints\",\n },\n {\n label: \"Launch lead time\",\n value: \"6d\",\n delta: \"-3d\",\n description: \"from concept to production\",\n },\n];\n\nconst fadeUp: Variants = {\n hidden: { opacity: 0, y: 16 },\n show: { opacity: 1, y: 0, transition: { duration: 0.5, ease: \"easeOut\" } },\n};\n\nexport function GlassmorphismMinimalMetricsBlock() {\n return (\n
\n
\n
\n
\n
\n\n
\n \n \n \n realtime insights\n \n

\n A snapshot of momentum that refuses to clutter the dashboard\n

\n

\n Glassy panels surface just the signal, Highlighting the metrics that\n matter while the rest stays gracefully out of the way.\n

\n \n\n \n {metrics.map((metric) => (\n \n \n
\n
\n
\n \n {metric.label}\n \n \n
\n
\n \n {metric.value}\n \n \n {metric.delta}\n \n
\n

\n {metric.description}\n

\n
\n \n \n ))}\n \n\n \n
\n
\n \n
\n
\n

\n concierge insight desk\n

\n

\n Curated weekly digests keep leaders aligned without dashboards.\n

\n
\n
\n \n Request a sample\n \n \n
\n
\n );\n}\n", "type": "registry:block", "target": "components/uitripled/glassmorphism-minimal-metrics-block-shadcnui.tsx" } ] }