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.
A Polaris real-estate coming-soon section (single accent color, square eyebrow) that sets a development image with an accent badge beside a project name, an eyebrow, a heading, a description, a three-column key-facts grid, and a working register-interest email form with a success state.
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/comingsoon66?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon66?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon66.tsx.
The installed file exports comingsoon66Demo alongside the block: the exact props behind the preview above. Spread it to get a working register-interest page in one line.
import { ComingSoon66, comingsoon66Demo } from "@/components/beste/block/comingsoon66";
export default function Page() {
return <ComingSoon66 {...comingsoon66Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { ComingSoon66 } from "@/components/beste/block/comingsoon66";
export default function Page() {
return (
<ComingSoon66
brand="The Rowan Residences"
label="Now Registering"
heading="Forty homes by the water, releasing this spring."
description="One and two-bedroom residences designed for light and quiet."
facts={[
{ label: "Homes from", value: "$420,000" },
{ label: "Location", value: "Harbour District" },
{ label: "Residences", value: "40 total" },
]}
image={{ src: "/residences.jpg", alt: "A modern waterfront residential building" }}
labels={{
placeholder: "Enter your email",
success: "You're registered. We'll share plans and pricing before launch.",
note: "Registered buyers get first pick of homes and floor plans.",
imageBadge: "Completing 2027",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
brand | string | – | Development or project name above the eyebrow |
label | string | – | Square eyebrow rendered via Badge6 |
labels | ComingSoon66Labels | {} | Form placeholder, success, note, and image-badge strings |
heading | string | – | Section heading |
description | string | – | Supporting paragraph under the heading |
facts | FactItem[] | [] | Key-facts grid rendered as a three-column <dl> |
image | ImageItem | – | Cover image with an optional accent badge overlay |
className | string | – | Extra classes for the outer <section> |
type ImageItem = {
src: string;
alt: string;
};
type FactItem = {
label: string;
value: string;
};
type ComingSoon66Labels = {
placeholder?: string;
success?: string;
note?: string;
imageBadge?: 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.image renders as a plain <img> absolutely positioned to cover its frame, with labels.imageBadge pinned top-left as a solid accent chip when present.<dl>, each cell topped with a border rule, and renders only when facts is non-empty.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.
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.
comingsoon56
A hospitality coming-soon section with an interior image beside a venue name, a square eyebrow, a heading, an opening details grid with icons, and a working email list form with a success state.
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.
comingsoon62
An education coming-soon section with a square eyebrow, a course heading, a start/length/format details grid, a working waitlist email form, and a syllabus card listing numbered lessons.