{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "glassmorphism-pricing-block-shadcnui", "type": "registry:block", "title": "Glassmorphism Pricing", "description": "Pricing cards with glassmorphism effects, hover animations, and feature lists", "registryDependencies": [ "button" ], "dependencies": [ "framer-motion", "react" ], "files": [ { "path": "@uitripled/react-shadcn/src/components/sections/glassmorphism-pricing-block.tsx", "content": "\"use client\";\n\nimport { Button } from \"@/components/ui/button\";\nimport { Card } from \"@/components/ui/card\";\nimport { Check } from \"lucide-react\";\n\nexport function GlassmorphismPricingBlock() {\n const plans = [\n {\n name: \"Starter\",\n price: \"$29\",\n description: \"Perfect for small teams\",\n features: [\n \"Up to 10 users\",\n \"Basic analytics\",\n \"Email support\",\n \"1GB storage\",\n ],\n popular: false,\n },\n {\n name: \"Pro\",\n price: \"$99\",\n description: \"For growing businesses\",\n features: [\n \"Unlimited users\",\n \"Advanced analytics\",\n \"Priority support\",\n \"100GB storage\",\n \"Custom integrations\",\n ],\n popular: true,\n },\n {\n name: \"Enterprise\",\n price: \"Custom\",\n description: \"For large organizations\",\n features: [\n \"Unlimited everything\",\n \"Dedicated support\",\n \"Custom SLA\",\n \"Unlimited storage\",\n \"Advanced security\",\n ],\n popular: false,\n },\n ];\n\n return (\n
\n
\n
\n

\n Simple, transparent pricing\n

\n

\n Choose the plan that's right for your team\n

\n
\n\n
\n {plans.map((plan, index) => (\n \n {plan.popular && (\n
\n MOST POPULAR\n
\n )}\n

\n {plan.name}\n

\n
\n \n {plan.price}\n \n {plan.price !== \"Custom\" && (\n /month\n )}\n
\n

\n {plan.description}\n

\n \n Get Started\n \n
    \n {plan.features.map((feature, i) => (\n
  • \n
    \n \n
    \n {feature}\n
  • \n ))}\n
\n \n ))}\n
\n
\n
\n );\n}\n", "type": "registry:block", "target": "components/uitripled/glassmorphism-pricing-block-shadcnui.tsx" } ] }