An events section that opens with a split featured card pairing a photo with date, time, and format lines, then lists the rest of the schedule as rows separated by hairlines, each with a bordered date tile, host meta, seat count, and register action.
Events section that opens with a split featured card pairing a photo with date, time, and format lines under a tag, then lists the rest of the schedule as rows separated by hairlines, each carrying a bordered date tile, host meta, a seat count, and its own register action.
Upgrade to Pro
Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.
Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.
Radix flavor
npx shadcn add "https://ui.beste.co/r/event94?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/event94?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/event94.tsx plus the badge23 and button21 components it uses for the eyebrow, the featured tag, and the register actions.
The installed file exports event94Demo alongside the block: the exact props behind the preview above. Spread it to get a working schedule in one line.
import { Event94, event94Demo } from "@/components/beste/block/event94";
export default function EventsPage() {
return <Event94 {...event94Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Event94 } from "@/components/beste/block/event94";
export default function EventsPage() {
return (
<Event94
badge={{ label: "Sessions" }}
heading="Live sessions, run by the people who built it"
featured={{
image: { src: "/images/reception.jpg", alt: "A reception desk in soft light" },
tag: "Next up",
title: "From first hello to final invoice",
description: "A full walkthrough of one member's journey, questions at the end.",
date: "Thursday, May 08",
time: "15:00 CET, 60 minutes",
format: "Live workshop, 40 seats",
button: { label: "Save a seat", href: "/sessions/walkthrough" },
}}
items={[
{
month: "May",
day: "14",
title: "Migrating from spreadsheets",
format: "Workshop",
duration: "45 min",
host: "Priya Anand",
seats: "12 seats left",
button: { label: "Register", href: "/sessions/migrating" },
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Monospace eyebrow above the hairline rule, rendered via Badge23 |
heading | string | – | Section heading in the left column |
description | string | – | Supporting paragraph, right-aligned from md up |
featured | FeaturedEvent | – | Split card above the list, with its own photo and detail lines |
items | EventItem[] | [] | Schedule rows under the featured card |
className | string | – | Extra classes for the outer <section> |
type ActionLink = { label: string; href: string };
type FeaturedEvent = {
image: { src: string; alt: string };
tag: string;
title: string;
description: string;
date: string;
time: string;
format: string;
button: ActionLink;
};
type EventItem = {
month: string;
day: string;
title: string;
format: string;
duration: string;
host: string;
seats: string;
button: ActionLink;
};Date objects. The block never parses, sorts, or compares them, so rows render in the order you pass them and a past session stays on the page until it leaves the data.month and day into two fields on purpose, which is what lets the tile stay a fixed size-16 square whatever the month abbreviation is.seats is free text, so the same field carries 12 seats left and Open to all without a separate availability flag or any logic in the block.h-64 on mobile and switches to md:h-auto, so from md it stretches to whatever height the detail column ends up needing.ActionLink through Button21, in the hairline outline tone in the list and the solid tone on the featured card, which is the only visual weighting between them.event102
Upcoming sessions as hairline rows, each opening with the date set as a figure, then the session and what it covers, with its seat state and a booking link on the end.
event25
Session cards displaying talk titles, speakers, times, locations, and remaining capacity. Perfect for conference agendas and session discovery.
event14
Speaker cards displaying multiple sessions per presenter with times, locations, and session types. Perfect for multi-track conferences with recurring speakers.
event98
A tour schedule listing each city as a linked hairline row with its venue, date, and remaining seats, muting the sold-out stops, beside a sticky tile that floats a live locations card.