{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "call-to-action-2",
  "type": "registry:block",
  "title": "Call to Action 2",
  "description": "Call to action on a subtle bordered panel with primary and secondary buttons.",
  "registryDependencies": [
    "button"
  ],
  "files": [
    {
      "path": "app/preview/call-to-action/two/page.tsx",
      "content": "import { Button } from '@/components/ui/button'\nimport Link from 'next/link'\n\nexport default function CallToAction() {\n    return (\n        <section className=\"py-16\">\n            <div className=\"mx-auto max-w-5xl rounded-3xl border px-6 py-12 md:py-20 lg:py-32\">\n                <div className=\"text-center\">\n                    <h2 className=\"text-balance text-4xl font-semibold lg:text-5xl\">Start Building</h2>\n                    <p className=\"mt-4\">Everything you need to go from first commit to launch day.</p>\n\n                    <div className=\"mt-12 flex flex-wrap justify-center gap-4\">\n                        <Button asChild size=\"lg\">\n                            <Link href=\"/\">\n                                <span>Get Started</span>\n                            </Link>\n                        </Button>\n\n                        <Button asChild size=\"lg\" variant=\"outline\">\n                            <Link href=\"/\">\n                                <span>Book Demo</span>\n                            </Link>\n                        </Button>\n                    </div>\n                </div>\n            </div>\n        </section>\n    )\n}\n",
      "type": "registry:component",
      "target": "components/call-to-action.tsx"
    }
  ]
}