{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "pricing-5",
  "type": "registry:block",
  "title": "Pricing 5",
  "description": "Pricing panel with a plan summary, benefits and customer logos.",
  "registryDependencies": [
    "button"
  ],
  "files": [
    {
      "path": "app/preview/pricing/five/page.tsx",
      "content": "import { Button } from '@/components/ui/button'\nimport { Check } from 'lucide-react'\nimport Link from 'next/link'\n\nexport default function Pricing() {\n    return (\n        <div className=\"relative py-16 md:py-32\">\n            <div className=\"mx-auto max-w-5xl px-6\">\n                <div className=\"mx-auto max-w-2xl text-center\">\n                    <h2 className=\"text-balance text-3xl font-bold md:text-4xl lg:text-5xl\">Start managing your company smarter today</h2>\n                </div>\n                <div className=\"mt-8 md:mt-20\">\n                    <div className=\"bg-card relative rounded-3xl border shadow-2xl shadow-zinc-950/5\">\n                        <div className=\"grid items-center gap-12 divide-y p-12 md:grid-cols-2 md:divide-x md:divide-y-0\">\n                            <div className=\"pb-12 text-center md:pb-0 md:pr-12\">\n                                <h3 className=\"text-2xl font-semibold\">Suite Enterprise</h3>\n                                <p className=\"mt-2 text-lg\">For your company of any size</p>\n                                <span className=\"mb-6 mt-12 inline-block text-6xl font-bold\">\n                                    <span className=\"text-4xl\">$</span>234\n                                </span>\n\n                                <div className=\"flex justify-center\">\n                                    <Button asChild size=\"lg\">\n                                        <Link href=\"#\">Get started</Link>\n                                    </Button>\n                                </div>\n\n                                <p className=\"text-muted-foreground mt-12 text-sm\">Includes : Security, Unlimited Storage, Payment, Search engine, and all features</p>\n                            </div>\n                            <div className=\"relative\">\n                                <ul role=\"list\" className=\"space-y-4\">\n                                    {['First premium advantage', 'Second advantage weekly', 'Third advantage donate to project', 'Fourth, access to all components weekly'].map((item, index) => (\n                                        <li key={index} className=\"flex items-center gap-2\">\n                                            <Check className=\"size-3\" />\n                                            <span>{item}</span>\n                                        </li>\n                                    ))}\n                                </ul>\n                                <p className=\"text-muted-foreground mt-6 text-sm\">Team can be any size, and you can add or switch members as needed. Companies using our platform include:</p>\n                                <div className=\"mt-12 flex flex-wrap items-center justify-between gap-6\">\n                                    <img className=\"h-5 w-fit dark:invert\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@16.32.0/icons/nvidia.svg\" alt=\"Nvidia Logo\" height=\"20\" width=\"auto\" />\n                                    <img className=\"h-4 w-fit dark:invert\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@16.32.0/icons/stripe.svg\" alt=\"Stripe Logo\" height=\"16\" width=\"auto\" />\n                                    <img className=\"h-4 w-fit dark:invert\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@16.32.0/icons/github.svg\" alt=\"GitHub Logo\" height=\"16\" width=\"auto\" />\n                                    <img className=\"h-5 w-fit dark:invert\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@16.32.0/icons/nike.svg\" alt=\"Nike Logo\" height=\"20\" width=\"auto\" />\n                                </div>\n                            </div>\n                        </div>\n                    </div>\n                </div>\n            </div>\n        </div>\n    )\n}\n",
      "type": "registry:component",
      "target": "components/pricing.tsx"
    }
  ]
}