Panel Discussion Section
Panel session card: a moderator highlight (larger avatar and name), a grid of panelist avatars and names below, plus the discussion topic heading and the scheduled time/location line. Perfect for industry panels and expert roundtables.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its badge, avatar, avatar-initials dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/panel-discussion-section.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/event/event14.tsx instead.
Usage
The file also exports event14Demo, 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 { Event14, event14Demo } from "@/components/blocks/event/event14"; export default function Page() { return <Event14 {...event14Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| heading | ReactNode | none | Discussion topic heading. |
| time | string | none | Scheduled time, e.g. "Day 2, 3:00 PM". |
| location | string | none | Scheduled location, e.g. "Main Stage". |
| moderator | EventPanelist | none | The panel's moderator, shown larger with a Moderator badge. |
| panelists | EventPanelist[] | none | The remaining panelists, shown in a smaller grid. |
| className | string | none | Extra classes for the outer section element. |
Types
interface EventPanelist { name: string; role?: string; image?: { src: string; alt: string }; }
Behavior notes
- Purely presentational: no links, forms, or handlers, this is a static session card with no real scheduling logic.
- AvatarFallback shows initials (via initialsFromName) whenever the moderator's or a panelist's image is omitted or fails to load.
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.