Fitness Studio Founding ListPRO

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.

ComingSoon67: Fitness Studio Founding List

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.

Upgrade Now

Installation

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

bash
npx shadcn add "https://ui.beste.co/r/comingsoon67?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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.",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
brandstringStudio name above the eyebrow
labelstringSquare eyebrow rendered via Badge6
labelsComingSoon67Labels{}Schedule title plus the form placeholder, success, and note strings
headingstringSection heading
descriptionstringSupporting paragraph under the heading
classesClassItem[][]Class rows listed inside the schedule card
classNamestringExtra classes for the outer <section>
ts
type ClassItem = {
  name: string;
  time: string;
};

type ComingSoon67Labels = {
  scheduleTitle?: string;
  placeholder?: string;
  success?: string;
  note?: string;
};

Behavior notes

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.

More Coming Soon blocks

View all Coming Soon
PRO

comingsoon44

Founder Note Waitlist

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.

PRO

comingsoon64

Under Construction Contact

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.

PRO

comingsoon23

Founding Member Offer

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.

PRO

comingsoon15

Waitlist Coming Soon

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.

PRO

comingsoon19

Pre-Launch Manifesto

A pre-launch manifesto section on a soft muted card with a monospace parenthetical eyebrow, a large statement heading, and a three-column ruled list of numbered building principles above a follow-along pill button.

PRO

comingsoon73

Sign The Wall Waitlist

An interactive waitlist coming-soon section with a monospace parenthetical eyebrow, a heading, a name and email form, and a live wall of member name chips that prepends your own entry on submit.