Components
A minimal centered call-to-action section with a badge, heading, description, action buttons, and footnote, ideal for newsletter signups and conversion areas.
Loading preview...
import { Cta8 } from "@/components/ui/cta8";
export default function Cta8Demo() {
return (
<Cta8
badge={{ label: "Newsletter", variant: "secondary" }}
heading="Stay in the <strong>loop</strong>"
description="Get the latest updates, articles, and resources delivered straight to your inbox every week. Join thousands of subscribers."
buttons={[
{ label: "Subscribe Now", href: "https://beste.co" },
{ label: "Learn More", href: "https://beste.co", variant: "outline" },
]}
footnote="No spam. Unsubscribe anytime."
/>
);
}