{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "cta-2",
  "description": "Minimal call-to-action section with headline, short description, and dual buttons for sales contact and getting started.",
  "registryDependencies": [
    "button"
  ],
  "files": [
    {
      "path": "registry/blocks/cta/2/cta.tsx",
      "content": "import { ArrowRightIcon } from \"lucide-react\";\nimport { Button } from \"@/components/ui/button\";\n\nexport function CallToAction() {\n  return (\n    <div className=\"relative mx-auto flex w-full max-w-3xl flex-col justify-between border-x\">\n      <div className=\"-translate-x-1/2 -top-px pointer-events-none absolute left-1/2 w-screen border-t\" />\n      <div className=\"border-b px-2 py-8\">\n        <h2 className=\"text-center font-semibold text-lg md:text-2xl\">\n          Plan the present. Build the future.\n        </h2>\n        <p className=\"text-balance text-center text-muted-foreground text-sm md:text-base\">\n          Start your journey today by clicking the button below.\n        </p>\n      </div>\n      <div className=\"flex items-center justify-center gap-2 bg-secondary/80 p-4 dark:bg-secondary/40\">\n        <Button variant=\"outline\">Contact Sales</Button>\n        <Button>\n          Get Started <ArrowRightIcon />\n        </Button>\n      </div>\n      <div className=\"-translate-x-1/2 -bottom-px pointer-events-none absolute left-1/2 w-screen border-b\" />\n    </div>\n  );\n}\n",
      "type": "registry:component"
    }
  ],
  "meta": {
    "height": "40vh"
  },
  "categories": [
    "cta"
  ],
  "type": "registry:block"
}