A fitness coming-soon section with a studio name, a square eyebrow, a heading and a working founding-membership email form, beside a card previewing a week of the class schedule.
A Polaris fitness coming-soon section (single accent color, square eyebrow) that pairs a studio name, an eyebrow, a heading, a description, and a working founding-membership email form on the left with a card previewing a week of the class schedule on the right.
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/comingsoon67?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon67?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon67.tsx.
The installed file exports comingsoon67Demo alongside the block: the exact props behind the preview above. Spread it to get a working founding-list page in one line.
import { ComingSoon67, comingsoon67Demo } from "@/components/beste/block/comingsoon67";
export default function Page() {
return <ComingSoon67 {...comingsoon67Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { ComingSoon67 } from "@/components/beste/block/comingsoon67";
export default function Page() {
return (
<ComingSoon67
brand="Meridian Studio"
label="Founding Memberships"
heading="A calmer place to train opens next month."
description="Small classes, natural light, and instructors who know your name."
classes={[
{ name: "Sunrise Flow", time: "Mon · 7:00am" },
{ name: "Strength Foundations", time: "Tue · 6:30pm" },
{ name: "Reformer Pilates", time: "Thu · 12:00pm" },
{ name: "Slow Restore", time: "Sun · 9:00am" },
]}
labels={{
scheduleTitle: "A week on the schedule",
placeholder: "Enter your email",
success: "You're on the list. Founding rates are yours to keep.",
note: "First 100 members lock in half-price for life.",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
brand | string | – | Studio name above the eyebrow |
label | string | – | Square eyebrow rendered via Badge6 |
labels | ComingSoon67Labels | {} | Schedule title plus the form placeholder, success, and note strings |
heading | string | – | Section heading |
description | string | – | Supporting paragraph under the heading |
classes | ClassItem[] | [] | Class rows listed inside the schedule card |
className | string | – | Extra classes for the outer <section> |
type ClassItem = {
name: string;
time: string;
};
type ComingSoon67Labels = {
scheduleTitle?: string;
placeholder?: string;
success?: string;
note?: string;
};handleSubmit calls preventDefault and only flips to the success panel when the trimmed email is non-empty, so there is no external callback to wire.Check icon, and the note line hides once submitted since it renders only when note is set and the form is not yet submitted.classes is non-empty, listing each class as a border-topped row with its name and time.items-start, so the schedule card keeps its own height independent of the copy column.Wiring the form up
The form ships with local state and a success message but no backend, so submissions are not sent anywhere until you connect one. Point handleSubmit at your own route handler or email platform, or wire in a form library. For a walkthrough of the options, see React Hook Form, TanStack Form, and Formisch.
comingsoon44
A personal pre-launch section with a square eyebrow, a statement heading, a short founder note in paragraphs, and a signature row with avatar beside a dark seal waitlist button.
comingsoon64
A B2B coming-soon section with a studio name, a square eyebrow, a heading, an icon contact-details list, and a working name, email, and message contact form with a success state.
comingsoon23
A bordered pre-launch offer card with a square eyebrow, a heading, a checked benefit list, a seats-claimed progress bar, and a working rounded email-capture form with a success state.
comingsoon15
A centered pre-launch section with an eyebrow, a large light heading, a paragraph, an image tile holding a working email-capture form with a success state, and a social-proof note.