Staaarter

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.

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 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.json

Prefer 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

PropTypeDefaultDescription
eyebrowstringundefinedBadge text above the heading.
headingReactNodenoneSection heading.
descriptionstringundefinedSupporting paragraph under the heading.
tiersSponsorshipTier[]noneThe sponsorship tier cards, in the same order as each row's included array.
rowsComparisonRow[]noneComparison table rows; each row's included array must align by index with tiers.
classNamestringnoneExtra 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.