Under Construction Contact
A centered B2B coming-soon screen for a studio rebuilding its site. Shows the studio name, an eyebrow, heading, and an icon list of address, phone, and email contact details, followed by a working name, email, and message contact form with a success state.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/under-construction-contact.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon64.tsx instead.
Usage
The file also exports comingsoon64Demo, 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 { ComingSoon64, comingsoon64Demo } from "@/components/blocks/coming-soon/comingsoon64"; export default function Page() { return <ComingSoon64 {...comingsoon64Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| studioName | string | none | Name of the studio or business, shown above the eyebrow. |
| eyebrow | string | "Coming soon" | Small label above the heading. |
| heading | string | "Our new site is under construction" | Main heading. |
| description | string | "We're rebuilding from the ground up..." | Supporting copy under the heading. |
| contacts | ContactDetail[] | none | Address, phone, and/or email rows rendered with icons. |
| className | string | none | Extra classes for the outer section element. |
Types
export interface ContactDetail { type: "address" | "phone" | "email"; value: string; }
Behavior notes
- The name, email, and message contact form is real client state (useState per field), submitting flips the card to a success message, no network request is made anywhere.
- Each contact row's icon is chosen internally from a fixed type-to-icon map (address/phone/email), never passed in as a prop, so nothing icon-shaped crosses the client boundary.
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.