TetraKits UI Banner Stripe CTA ← Library

Banner Stripe CTA

Full-width banner stripe CTA for promos and launch announcements. Indigo background, centered copy, and inline claim button. Drop into any React layout above the navbar or below the hero for time-sensitive offers.

banner ctapromo stripeannouncement barfull width ctareact marketing
Live preview

Dependencies

react
npm install react react-dom
export function BannerStripeCta() {
  return (
    <div className="flex flex-wrap items-center justify-center gap-3 bg-indigo-600 px-4 py-3 text-center text-sm text-white">
      <span>🎉 Launch week — 40% off Pro plans</span>
      <a href="#" className="rounded-md bg-white/15 px-3 py-1 font-semibold hover:bg-white/25">Claim offer</a>
    </div>
  );
}