Property Register Interest
A two-column pre-launch screen for a real estate development. One side shows a full-bleed photo of the development with an accent badge overlaid in the corner. The other side carries the project name, an eyebrow, heading, a key-facts grid (units, bedrooms, completion date, starting price), and a working register-interest email form with a success state.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its badge, media-slot dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/property-register-interest.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon66.tsx instead.
Usage
The file also exports comingsoon66Demo, the exact props behind the preview above. Spread it to get a working section in one line, then replace it with your own data.
import { ComingSoon66, comingsoon66Demo } from "@/components/blocks/coming-soon/comingsoon66"; export default function Page() { return <ComingSoon66 {...comingsoon66Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| projectName | string | none | Name of the development, shown above the eyebrow. |
| eyebrow | string | "Coming soon" | Small label above the heading. |
| heading | string | "Register your interest" | Main heading. |
| description | string | "Be the first to hear about pricing..." | Supporting copy under the heading. |
| badgeLabel | string | "New development" | Label on the badge overlaid on the photo. |
| keyFacts | KeyFact[] | none | Label/value pairs rendered in the key-facts grid. |
| image | MediaSlotImage | undefined | Photo filling the left-hand panel. |
| className | string | none | Extra classes for the outer section element. |
Types
export interface KeyFact { label: string; value: string; }
Behavior notes
- The register-interest email form is real client state (useState): submitting swaps it for a confirmation message, nothing is sent to a server.
- The key-facts grid and the photo badge are both static, decorative content.
- The photo panel is hidden below the lg breakpoint (hidden lg:block), so on small screens only the form column renders.
More Coming Soon Blocks
View all →countdown-timer-launch
Countdown Timer Launch
A centered launch page with a live days/hours/minutes/seconds countdown to a target date.
development-progress-milestones
Development Progress Milestones
A centered launch page with an overall progress bar and a milestone tracker list with status badges.
social-connect-launch
Social Connect Launch
A centered coming-soon page with pill-style outline buttons linking out to Twitter, GitHub, LinkedIn, and email.
animated-icons-preview
Animated Icons Preview
A centered coming-soon page with a row of bobbing icon tiles and a pulsing build-status indicator.
sneak-peek-feature-grid
Sneak Peek Feature Grid
A centered coming-soon page with a grid of blurred feature cards teased behind a lock icon overlay.
waitlist-with-avatars
Waitlist with Avatars
A centered coming-soon page with a working waitlist signup form, stacked subscriber avatars, and a live join count.