TetraKits UI Split Row CTA ← Library

Split Row CTA

Split row CTA card: headline and social proof on the left, account creation button on the right. Responsive stack on mobile, horizontal on desktop. Ideal for mid-page conversion blocks and footer CTAs.

split ctasignup blockconversion sectiontailwind card ctalanding page
Live preview

Dependencies

react
npm install react react-dom
export function SplitRowCta() {
  return (
    <div className="flex flex-col gap-4 rounded-2xl border border-zinc-200 bg-zinc-50 p-6 sm:flex-row sm:items-center sm:justify-between">
      <div>
        <h3 className="text-lg font-semibold text-zinc-900">Ready to ship?</h3>
        <p className="text-sm text-zinc-600">Join 12,000+ developers using TetraKits UI.</p>
      </div>
      <button className="shrink-0 rounded-xl bg-zinc-900 px-5 py-2.5 text-sm font-semibold text-white">Create account</button>
    </div>
  );
}