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.
A Polaris coming-soon section (single accent color, square eyebrow) that runs a two-column layout: a studio name, an eyebrow, a heading, a description, and an icon contact-details list on the left, paired with a working name, email, and message contact form that swaps to a success state 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/comingsoon64?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon64?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon64.tsx.
The installed file exports comingsoon64Demo alongside the block: the exact props behind the preview above. Spread it to get a working contact page in one line.
import { ComingSoon64, comingsoon64Demo } from "@/components/beste/block/comingsoon64";
export default function Page() {
return <ComingSoon64 {...comingsoon64Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { ComingSoon64 } from "@/components/beste/block/comingsoon64";
export default function Page() {
return (
<ComingSoon64
brand="Beste Studio"
label="Site Coming Soon"
heading="Our new site is on its way. Let's talk in the meantime."
description="We're a product studio for teams who care about the details."
contacts={[
{ label: "Email", value: "hello@beste.co" },
{ label: "Phone", value: "+1 (415) 555-0132" },
{ label: "Studio", value: "San Francisco, CA" },
]}
labels={{
formTitle: "Start a conversation",
namePlaceholder: "Your name",
emailPlaceholder: "Your email",
messagePlaceholder: "What can we help with?",
submitLabel: "Send message",
success: "Thanks, we've got it. We'll reply within one business day.",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
brand | string | – | Studio or company name shown above the eyebrow |
label | string | – | Square eyebrow rendered via Badge6 |
labels | ComingSoon64Labels | {} | Form title plus the placeholder, submit, and success strings |
heading | string | – | Section heading |
description | string | – | Supporting paragraph under the heading |
contacts | ContactItem[] | [] | Contact detail rows with a rotating icon per row |
className | string | – | Extra classes for the outer <section> |
type ContactItem = {
label: string;
value: string;
};
type ComingSoon64Labels = {
namePlaceholder?: string;
emailPlaceholder?: string;
messagePlaceholder?: string;
submitLabel?: string;
success?: string;
formTitle?: string;
};name, email, and message state; handleSubmit calls preventDefault and only flips to the success panel when both the trimmed name and email are non-empty, so there is no external callback to wire.Check icon and the success string; there is no way back to the form without a reload.<button type="submit"> styled as a solid accent bar, not a seal-style Polaris button.[Mail, Phone, MapPin] icon array by index, so the fourth row wraps back to the mail icon.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.
comingsoon67
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.
comingsoon60
A personal coming-soon page with a monospace parenthetical eyebrow, an oversized name, a role and tagline, an email contact pill button, a row of social links, and an availability status line.
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.
comingsoon66
A real-estate coming-soon section with an accent-badged development image beside a project name, a square eyebrow, a heading, a key-facts grid, and a working register-interest email form.