Staaarter

Call for Speakers

A speaker-submission section: a heading and pitch, a submission-deadline callout, a benefits checklist (free ticket, travel stipend, speaker dinner, etc.), brief proposal guidelines, and a decorative 'Submit a proposal' CTA button. Perfect for conferences seeking talk proposals.

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/call-for-speakers.json

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

Usage

The file also exports event17Demo, 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 { Event17, event17Demo } from "@/components/blocks/event/event17";

export default function Page() {
  return <Event17 {...event17Demo} />;
}

Props

PropTypeDefaultDescription
eyebrowstring"Call for Speakers"Small badge label above the heading.
headingReactNodenoneLarge section heading.
descriptionstringundefinedSupporting paragraph under the heading.
deadlineLabelstringnoneSubmission-deadline callout text, shown with a clock icon.
benefitsstring[][]Checklist of speaker perks, each rendered with a check icon.
guidelinesstringundefinedBrief proposal-guidelines paragraph.
ctaLabelstring"Submit a proposal"CTA button label.
ctaHrefstring"#"CTA button href.
classNamestringnoneExtra classes for the outer section element.

Behavior notes

  • The 'Submit a proposal' button is a plain link (Button with render={<Link/>}) pointing at ctaHref; there is no real submission form wired up, it's decorative in the demo.
  • The deadline callout and benefits checklist are static strings, not derived from any real date or backend.