Property Register InterestPRO

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.

ComingSoon66: Property Register Interest

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.

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/comingsoon66?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

Quick start

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.

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

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

Props

PropTypeDefaultDescription
brandstringDevelopment or project name above the eyebrow
labelstringSquare eyebrow rendered via Badge6
labelsComingSoon66Labels{}Form placeholder, success, note, and image-badge strings
headingstringSection heading
descriptionstringSupporting paragraph under the heading
factsFactItem[][]Key-facts grid rendered as a three-column <dl>
imageImageItemCover image with an optional accent badge overlay
classNamestringExtra classes for the outer <section>
ts
type ImageItem = {
  src: string;
  alt: string;
};

type FactItem = {
  label: string;
  value: string;
};

type ComingSoon66Labels = {
  placeholder?: string;
  success?: string;
  note?: string;
  imageBadge?: 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

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

comingsoon56

Restaurant Opening Soon

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.

PRO

comingsoon67

Fitness Studio Founding List

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.

PRO

comingsoon62

Course Enrollment Waitlist

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.

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

comingsoon60

Portfolio Under Construction

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.