Staaarter

Become a Sponsor CTA

Two-column sponsorship pitch: a heading, description, and bulleted list of sponsorship benefits (audience reach, brand visibility, lead capture) on one side, and 2-3 audience-reach statistics plus a "Become a sponsor" contact CTA on the other. Perfect for attracting event sponsors and partners.

By Staaarter Team
Event
Docs
Live preview

Docs

Installation

A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its button dependencies and any missing npm packages, and installs them straight into your project.

npx shadcn add https://staaarter.com/r/become-a-sponsor-cta.json

Prefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/event/event29.tsx instead.

Usage

The file also exports event29Demo, the exact props behind the preview above. Spread it to get a working section in one line, then replace it with your own data.

import { Event29, event29Demo } from "@/components/blocks/event/event29";

export default function Page() {
  return <Event29 {...event29Demo} />;
}

Props

PropTypeDefaultDescription
eyebrowstringundefinedSmall label above the heading.
headingReactNodenoneSection heading.
descriptionstringundefinedSupporting paragraph under the heading.
benefitsSponsorBenefit[]noneBulleted sponsorship benefits with an icon each.
statsSponsorStat[]noneAudience-reach statistics shown in the stat card.
ctaLabelstring"Become a sponsor"Contact CTA button label.
ctaHrefstring"mailto:[email protected]"Contact CTA href, typically a mailto link.
classNamestringnoneExtra classes for the outer section element.

Types

interface SponsorBenefit {
  icon: LucideIcon;
  label: string;
}

interface SponsorStat {
  value: string;
  label: string;
}

Behavior notes

  • The contact CTA renders as a plain link (Button with render={<Link/>}) pointing at ctaHref; there is no real form submission or backend call, it's decorative in the demo.
  • Stats are static display strings, not live counters pulled from any analytics source.