{"$schema":"https://ui.shadcn.com/schema/registry-item.json","name":"marketing-cta-sections-integrations-cta","type":"registry:block","title":"Integrations CTA","files":[{"path":"components/blocks/marketing/cta-sections/integrations-cta.tsx","content":"import { Button } from '@/components/ui/button';\nimport { ArrowUpRight, PlusCircle } from 'lucide-react';\n\nexport default function IntegrationsCTA() {\n  const integrations = [\n    {\n      name: 'Slack',\n      description: 'Real-time notifications and collaboration',\n      logo: 'https://cdn.worldvectorlogo.com/logos/slack-new-logo.svg',\n      color: '#4A154B',\n    },\n    {\n      name: 'Salesforce',\n      description: 'Sync customer data and interactions',\n      logo: 'https://cdn.worldvectorlogo.com/logos/salesforce-2.svg',\n      color: '#00A1E0',\n    },\n    {\n      name: 'HubSpot',\n      description: 'Marketing automation and CRM sync',\n      logo: 'https://cdn.worldvectorlogo.com/logos/hubspot.svg',\n      color: '#FF7A59',\n    },\n    {\n      name: 'Zapier',\n      description: 'Connect with 3,000+ apps and services',\n      logo: 'https://cdn.worldvectorlogo.com/logos/zapier-1.svg',\n      color: '#FF4A00',\n    },\n    {\n      name: 'Google Workspace',\n      description: 'File sharing and collaboration',\n      logo: 'https://cdn.worldvectorlogo.com/logos/google-drive.svg',\n      color: '#0F9D58',\n    },\n    {\n      name: 'Stripe',\n      description: 'Secure payment processing',\n      logo: 'https://cdn.worldvectorlogo.com/logos/stripe-4.svg',\n      color: '#635BFF',\n    },\n    {\n      name: 'GitHub',\n      description: 'Version control and code management',\n      logo: 'https://cdn.worldvectorlogo.com/logos/github-icon-1.svg',\n      color: '#24292E',\n    },\n    {\n      name: 'Jira',\n      description: 'Project tracking and management',\n      logo: 'https://cdn.worldvectorlogo.com/logos/jira-3.svg',\n      color: '#0052CC',\n    },\n  ];\n\n  const featuredIntegrations = integrations.slice(0, 6);\n\n  return (\n    <>\n      {/* Integrations CTA Section */}\n      <div className=\"bg-muted/30 py-16 md:py-24\">\n        <div className=\"container mx-auto px-4 md:px-6 2xl:max-w-[1400px]\">\n          <div className=\"mx-auto max-w-5xl\">\n            <div className=\"grid items-center gap-8 md:grid-cols-2 md:gap-12\">\n              <div>\n                <h2 className=\"mb-4 text-3xl font-bold tracking-tighter md:text-4xl\">\n                  Seamlessly integrate with your favorite tools\n                </h2>\n                <p className=\"text-muted-foreground mb-6 md:text-lg\">\n                  Our platform connects with all the apps you already use,\n                  allowing you to streamline your workflow and maximize\n                  productivity.\n                </p>\n                <div className=\"flex flex-col space-y-3 sm:flex-row sm:space-y-0 sm:space-x-3\">\n                  <Button size=\"lg\" asChild>\n                    <a href=\"#\">\n                      Explore Integrations\n                      <ArrowUpRight className=\"ml-2 h-4 w-4\" />\n                    </a>\n                  </Button>\n                  <Button variant=\"outline\" size=\"lg\" asChild>\n                    <a href=\"#\">Request an Integration</a>\n                  </Button>\n                </div>\n                <div className=\"mt-8\">\n                  <p className=\"mb-2 text-sm font-medium\">\n                    Popular integrations:\n                  </p>\n                  <div className=\"flex flex-wrap gap-3\">\n                    {featuredIntegrations\n                      .slice(0, 3)\n                      .map((integration, index) => (\n                        <a\n                          key={index}\n                          href=\"#\"\n                          className=\"hover:bg-muted inline-flex items-center gap-1.5 rounded-full border px-3 py-1 text-sm transition-colors\"\n                        >\n                          <div\n                            className=\"relative h-4 w-4 overflow-hidden\"\n                            style={{\n                              backgroundColor: integration.color,\n                              borderRadius: '2px',\n                              padding: '1px',\n                            }}\n                          >\n                            <img\n                              src={integration.logo}\n                              alt={integration.name}\n                              width={16}\n                              height={16}\n                              className=\"object-contain\"\n                            />\n                          </div>\n                          {integration.name}\n                        </a>\n                      ))}\n                    <a\n                      href=\"#\"\n                      className=\"text-muted-foreground hover:bg-muted inline-flex items-center gap-1.5 rounded-full border px-3 py-1 text-sm transition-colors\"\n                    >\n                      <PlusCircle className=\"h-3.5 w-3.5\" />\n                      40+ more\n                    </a>\n                  </div>\n                </div>\n              </div>\n              <div className=\"grid grid-cols-3 gap-4\">\n                {featuredIntegrations.map((integration, index) => (\n                  <a\n                    key={index}\n                    href=\"#\"\n                    className=\"bg-card flex flex-col items-center justify-center rounded-lg border p-4 text-center transition-all hover:shadow-md\"\n                  >\n                    <div\n                      className=\"relative mb-3 flex h-12 w-12 items-center justify-center rounded-lg\"\n                      style={{ backgroundColor: integration.color + '10' }}\n                    >\n                      <img\n                        src={integration.logo}\n                        alt={integration.name}\n                        width={28}\n                        height={28}\n                        className=\"object-contain\"\n                      />\n                    </div>\n                    <span className=\"text-sm font-medium\">\n                      {integration.name}\n                    </span>\n                  </a>\n                ))}\n              </div>\n            </div>\n\n            <div className=\"bg-card mt-16 rounded-xl border p-8\">\n              <div className=\"flex flex-col items-center justify-between gap-4 sm:flex-row\">\n                <div className=\"text-center sm:text-left\">\n                  <h3 className=\"text-2xl font-bold\">\n                    Need a custom integration?\n                  </h3>\n                  <p className=\"text-muted-foreground\">\n                    We can build custom integrations for your specific needs.\n                  </p>\n                </div>\n                <Button size=\"lg\" asChild>\n                  <a href=\"#\">Contact Our Team</a>\n                </Button>\n              </div>\n            </div>\n          </div>\n        </div>\n      </div>\n      {/* End Integrations CTA Section */}\n    </>\n  );\n}\n","type":"registry:component","target":"components/blocks/marketing/cta-sections/integrations-cta.tsx"},{"path":"components/ui/button.tsx","content":"import * as React from \"react\"\nimport { cva, type VariantProps } from \"class-variance-authority\"\nimport { Slot } from \"radix-ui\"\n\nimport { cn } from \"@/lib/utils\"\n\nconst buttonVariants = cva(\n  \"group/button inline-flex shrink-0 items-center justify-center rounded-md border border-transparent bg-clip-padding text-sm font-medium whitespace-nowrap transition-all outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 active:not-aria-[haspopup]:translate-y-px disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4\",\n  {\n    variants: {\n      variant: {\n        default: \"bg-primary text-primary-foreground hover:bg-primary/80\",\n        outline:\n          \"border-border bg-background shadow-xs hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:border-input dark:bg-input/30 dark:hover:bg-input/50\",\n        secondary:\n          \"bg-secondary text-secondary-foreground hover:bg-secondary/80 aria-expanded:bg-secondary aria-expanded:text-secondary-foreground\",\n        ghost:\n          \"hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:hover:bg-muted/50\",\n        destructive:\n          \"bg-destructive/10 text-destructive hover:bg-destructive/20 focus-visible:border-destructive/40 focus-visible:ring-destructive/20 dark:bg-destructive/20 dark:hover:bg-destructive/30 dark:focus-visible:ring-destructive/40\",\n        link: \"text-primary underline-offset-4 hover:underline\",\n      },\n      size: {\n        default:\n          \"h-9 gap-1.5 px-2.5 in-data-[slot=button-group]:rounded-md has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2\",\n        xs: \"h-6 gap-1 rounded-[min(var(--radius-md),8px)] px-2 text-xs in-data-[slot=button-group]:rounded-md has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-3\",\n        sm: \"h-8 gap-1 rounded-[min(var(--radius-md),10px)] px-2.5 in-data-[slot=button-group]:rounded-md has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5\",\n        lg: \"h-10 gap-1.5 px-2.5 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2\",\n        icon: \"size-9\",\n        \"icon-xs\":\n          \"size-6 rounded-[min(var(--radius-md),8px)] in-data-[slot=button-group]:rounded-md [&_svg:not([class*='size-'])]:size-3\",\n        \"icon-sm\":\n          \"size-8 rounded-[min(var(--radius-md),10px)] in-data-[slot=button-group]:rounded-md\",\n        \"icon-lg\": \"size-10\",\n      },\n    },\n    defaultVariants: {\n      variant: \"default\",\n      size: \"default\",\n    },\n  }\n)\n\nfunction Button({\n  className,\n  variant = \"default\",\n  size = \"default\",\n  asChild = false,\n  ...props\n}: React.ComponentProps<\"button\"> &\n  VariantProps<typeof buttonVariants> & {\n    asChild?: boolean\n  }) {\n  const Comp = asChild ? Slot.Root : \"button\"\n\n  return (\n    <Comp\n      data-slot=\"button\"\n      data-variant={variant}\n      data-size={size}\n      className={cn(buttonVariants({ variant, size, className }))}\n      {...props}\n    />\n  )\n}\n\nexport { Button, buttonVariants }\n","type":"registry:ui","target":"components/ui/button.tsx"}],"description":"A call to action surrounded by logos of supported tools and platforms. Reassures teams about compatibility before they sign up and connect apps.","dependencies":["class-variance-authority","lucide-react","radix-ui"]}