Sponsorship Tiers Comparison
Tiered sponsorship packages (Bronze/Silver/Gold/Platinum) shown as pricing cards, with a feature-comparison table below listing benefits like logo placement, booth space, and speaking slots as rows and a check or dash per tier column. Perfect for sponsor prospectus and partnership pages.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its badge, button dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/sponsorship-tiers-comparison.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/event/event30.tsx instead.
Usage
The file also exports event30Demo, 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 { Event30, event30Demo } from "@/components/blocks/event/event30"; export default function Page() { return <Event30 {...event30Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | undefined | Badge text above the heading. |
| heading | ReactNode | none | Section heading. |
| description | string | undefined | Supporting paragraph under the heading. |
| tiers | SponsorshipTier[] | none | The sponsorship tier cards, in the same order as each row's included array. |
| rows | ComparisonRow[] | none | Comparison table rows; each row's included array must align by index with tiers. |
| className | string | none | Extra classes for the outer section element. |
Types
interface SponsorshipTier { name: string; price: string; priceSuffix?: string; isFeatured?: boolean; } interface ComparisonRow { label: string; /** One entry per tier, in the same order as the tiers array. */ included: boolean[]; }
Behavior notes
- Each tier card's "Select" button is a plain link (Button with render={<Link/>}) pointing at "#"; there is no real checkout flow, it's decorative in the demo.
- isFeatured only controls the visual highlight (border, shadow, and a "Most popular" badge) on one tier card; it has no effect on the comparison table below.
More Event Blocks
View all →conference-hero-with-image
Conference Hero with Image
Split hero with a featured photo, date badge, location, attendee stat, and dual CTAs.
minimal-event-hero
Minimal Event Hero
Centered, image-free hero with an oversized heading, date/location line, and two CTAs.
event-hero-with-ticket-pricing
Event Hero with Ticket Pricing
Centered hero with an early-bird price, a strikethrough original price, and a deadline note.
event-hero-with-social-proof
Event Hero with Social Proof
Hero with a heading, a 3-stat strip (attendees/speakers/countries), and a trusted-by company row.
personal-schedule-builder
Personal Schedule Builder
Interactive session picker that lets attendees build their own conference agenda.
team-discount-calculator
Team Discount Calculator
Live quantity stepper that applies tiered group discounts to a seat total.