Breaks and Networking Schedule
Schedule cards specifically for non-session slots: coffee breaks, lunch, and social/networking events, each with a time range, a location, and a short activity-highlight description (e.g. 'Sponsored by Acme, coffee bar in the main atrium'). Perfect for showing networking opportunities alongside the main agenda.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/breaks-and-networking-schedule.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/event/event20.tsx instead.
Usage
The file also exports event20Demo, 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 { Event20, event20Demo } from "@/components/blocks/event/event20"; export default function Page() { return <Event20 {...event20Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| heading | string | "Breaks & networking" | Section heading. |
| description | string | undefined | Supporting paragraph under the heading. |
| items | Event20Item[] | none | List of break/networking schedule cards to render. |
| className | string | none | Extra classes for the outer section element. |
Types
interface Event20Item { title: string; timeRange: string; location: string; highlight: string; icon: LucideIcon; }
Behavior notes
- Each item's icon is a plain lucide-react component reference passed in as data (this block is a Server Component, so passing an icon as a prop is safe here, unlike a 'use client' block).
- Times, locations, and sponsor mentions are static demo copy, not pulled from any live schedule feed.
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.