TetraKits UI Elevated Card CTA ← Library

Elevated Card CTA

Elevated card CTA with gradient top accent bar, shadow-2xl depth, and full-width browse button on mobile. High-intent conversion block for component libraries, course sales, and product waitlists.

elevated ctacard conversiongradient accentshadow cardreact tailwind
Live preview

Dependencies

react
npm install react react-dom
export function ElevatedCardCta() {
  return (
    <div className="relative overflow-hidden rounded-2xl bg-white p-8 shadow-2xl ring-1 ring-zinc-200">
      <div className="absolute inset-x-0 top-0 h-1 bg-gradient-to-r from-indigo-500 via-violet-500 to-fuchsia-500" />
      <h3 className="text-2xl font-bold text-zinc-900">Build your landing page today</h3>
      <p className="mt-2 text-zinc-600">Free components. No account required.</p>
      <button className="mt-6 w-full rounded-xl bg-indigo-600 py-3 text-sm font-semibold text-white hover:bg-indigo-500 sm:w-auto sm:px-8">
        Browse components
      </button>
    </div>
  );
}