CTA Banner
A full-width call-to-action banner with headline and action buttons.
Button
Preview
Ready to get started?
Join thousands of teams already using our platform to build better products.
Code
<div class="w-full">
<div class="bg-primary text-primary-foreground rounded-xl p-8 md:p-16 text-center">
<div class="mx-auto max-w-2xl space-y-6">
<h2 class="text-3xl sm:text-4xl font-bold tracking-tight">
Ready to get started?
</h2>
<p class="text-primary-foreground/80 text-lg">
Join thousands of teams already using our platform to build better products.
</p>
<div class="flex flex-col sm:flex-row items-center justify-center gap-4">
<BbButton Size="ButtonSize.Large" Variant="ButtonVariant.Secondary">
Start Free Trial
</BbButton>
<BbButton Size="ButtonSize.Large" Variant="ButtonVariant.Outline"
class="border-primary-foreground/25 bg-transparent text-primary-foreground hover:bg-primary-foreground/10">
Talk to Sales
</BbButton>
</div>
</div>
</div>
</div>